Skip to content

Commit cc0ead6

Browse files
authored
Merge pull request #684 from lukpueh/release-0.31.0
Release securesystemslib v0.31.0
2 parents 833ba65 + 2bb771a commit cc0ead6

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## securesystemslib v0.31.0
4+
5+
### Added
6+
* CryptoSigner: create from `cryptography` private key with new constructor (#675)
7+
* SSlibKey: create from `cryptography` public key with new `from_crypto` method (#678)
8+
* Release: auto-release with PyPI Trusted Publishing (#683)
9+
* Docs to migrate legacy key files (#658)
10+
11+
### Removed
12+
* Removed `SSlibKey.from_pem` factory method in favor of `from_crypto` (#678)
13+
314
## securesystemslib v0.30.0
415

516
This release contains improved Sigstore support.

securesystemslib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pylint: disable=missing-module-docstring
22
import logging
33

4-
__version__ = "0.30.0"
4+
__version__ = "0.31.0"
55

66
# Configure a basic 'securesystemslib' top-level logger with a StreamHandler
77
# (print to console) and the WARNING log level (print messages of type

0 commit comments

Comments
 (0)