From b71cc5271a9a7b6898c79c1a12393d90996d5388 Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Wed, 24 Sep 2025 11:14:35 +0300 Subject: [PATCH] Prepare release 1.3.1 Signed-off-by: Jussi Kukkonen --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- securesystemslib/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) 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