diff --git a/CHANGELOG.md b/CHANGELOG.md index 44a9d10f..9d3cd081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - n/a +## [2.45.0] - 2024-05-10 + +### Added + +- Introduced `ProductId` class +- Added parsing ProductID certificate to `ProductIdPushItem` + ## [2.44.0] - 2024-04-08 ### Added @@ -496,7 +503,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial stable release of project -[Unreleased]: https://github.com/release-engineering/pushsource/compare/v2.44.0...HEAD +[Unreleased]: https://github.com/release-engineering/pushsource/compare/v2.45.0...HEAD +[2.45.0]: https://github.com/release-engineering/pushsource/compare/v2.44.0...v2.45.0 [2.44.0]: https://github.com/release-engineering/pushsource/compare/v2.43.1...v2.44.0 [2.43.1]: https://github.com/release-engineering/pushsource/compare/v2.43.0...v2.43.1 [2.43.0]: https://github.com/release-engineering/pushsource/compare/v2.42.0...v2.43.0 diff --git a/setup.py b/setup.py index 9268a1c6..94eda6e1 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_requirements(): setup( name="pushsource", - version="2.44.0", + version="2.45.0", packages=find_packages("src"), package_dir={"": "src"}, include_package_data=True,