From 8b253be72635d51ef8e9bdc9f945840bc6264513 Mon Sep 17 00:00:00 2001 From: "Spaehn Michael (CSS DSI TM AE AEB SW)" Date: Thu, 29 Aug 2024 18:03:52 +0200 Subject: [PATCH] Release of version 1.4.2 --- .gitmodules | 1 - .reuse/dep5 | 18 ------------------ CHANGELOG.md | 10 ++++++++-- setup.py | 6 ------ src/optigatrust/version.py | 2 +- 5 files changed, 9 insertions(+), 28 deletions(-) delete mode 100644 .reuse/dep5 diff --git a/.gitmodules b/.gitmodules index 13fe1f4..ad63036 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,4 +3,3 @@ [submodule "extras/optiga-trust-m/external/optiga"] path = extras/optiga-trust-m/external/optiga url = https://github.com/Infineon/optiga-trust-m.git - branch = release-v5.1.0 diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 1292d1d..0000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,18 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: docs/* -Copyright: 2021-2024 Infineon Technologies AG -License: CC-BY-NC-ND-4.0 - -Files: README.md CHANGELOG.md INSTALL.md tests/README.md src/optigatrust/DESCRIPTION.md -Copyright: 2021-2024 Infineon Technologies AG -License: CC0-1.0 - -Files: extras/optiga-trust-m/README.md -Copyright: 2021-2024 Infineon Technologies AG -License: CC0-1.0 - -Files: tests/fixtures/*.pem tests/fixtures/*.crt tests/fixtures/*.key src/optigatrust/lib/* -Copyright: 2021-2024 Infineon Technologies AG -License: CC-BY-NC-ND-4.0 - diff --git a/CHANGELOG.md b/CHANGELOG.md index 3177027..85b0c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 1.4.1 (2024-08-27) +## 1.4.2 (2024-08-29) + +### Fixed +- Removed .reuse/dep5 +- Cleaned setup.py +- Date of relese 1.4.1 fixed + +## 1.4.1 (2024-08-29) ### Changed - Migrated from .reuse/dep5 to REUSE.toml @@ -13,7 +20,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Added optigatrust-libusb-win-amd64 library - ## 1.4.0 (2024-08-08) ### Added diff --git a/setup.py b/setup.py index 93f3fd4..2effeb3 100644 --- a/setup.py +++ b/setup.py @@ -95,12 +95,6 @@ def run(self): "optigatrust": __package_root_dir, } -with open(os.path.join(__package_root_dir, "version.py")) as init_root: - for line in init_root: - if line.startswith("__version_info__"): - __version_tuple__ = eval(line.split("=")[1]) - __version = ".".join([str(x) for x in __version_tuple__]) - if __name__ == '__main__': setup( name=__name, diff --git a/src/optigatrust/version.py b/src/optigatrust/version.py index 3bb24a0..d7a9273 100644 --- a/src/optigatrust/version.py +++ b/src/optigatrust/version.py @@ -5,5 +5,5 @@ """Library version""" -__version__ = "1.4.1" +__version__ = "1.4.2" __version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())