diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b16a336..b01de26a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## securesystemslib v1.3.1 + +### Fixed +* AWSSigner: Don't send payload to AWS for signing, send hash only (#1026) +* Set Development status classifier to "production/stable" in Python + packaging (#1030) + +### Internals +* Minor infrastructure changes (#1005, #1013) + ## securesystemslib v1.3.0 The `hash` module will be removed in the next major version. Consider using diff --git a/pyproject.toml b/pyproject.toml index 3a349a91..93ac1686 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ keywords = [ "ecdsa", ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: POSIX", diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index 88173ded..9b38a395 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "1.3.0" +__version__ = "1.3.1" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type