From 540c97c718ae075b97942da5304c43f3a6806209 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Tue, 12 Nov 2024 15:40:56 +0800 Subject: [PATCH] ver: bump version to 0.13.1 --- CHANGELOG.md | 27 ++++++++++++++++++++++----- optree/version.py | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5782ccf4..2207275f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- + +### Changed + +- + +### Fixed + +- + +### Removed + +- + +------ + +## [0.13.1] - 2024-11-12 + +### Added + - Upload coverage / JUnit results / core dumps in CI workflows by [@XuehaiPan](https://github.com/XuehaiPan) in [#170](https://github.com/metaopt/optree/pull/170) and [#172](https://github.com/metaopt/optree/pull/172). - Add more info to `tree_flatten_one_level` by [@XuehaiPan](https://github.com/XuehaiPan) in [#168](https://github.com/metaopt/optree/pull/168). - Improve typing support for generic `PyTree[T]` and registry lookup / register functions by [@XuehaiPan](https://github.com/XuehaiPan) in [#160](https://github.com/metaopt/optree/pull/160) and [#166](https://github.com/metaopt/optree/pull/166). @@ -25,10 +45,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improve typing support for `optree.dataclasses.dataclass` and `optree.dataclasses.field` by [@manulari](https://github.com/manulari) in [#165](https://github.com/metaopt/optree/pull/165). -### Removed - -- - ------ ## [0.13.0] - 2024-10-03 @@ -345,7 +361,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ -[Unreleased]: https://github.com/metaopt/optree/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/metaopt/optree/compare/v0.13.1...HEAD +[0.13.1]: https://github.com/metaopt/optree/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/metaopt/optree/compare/v0.12.1...v0.13.0 [0.12.1]: https://github.com/metaopt/optree/compare/v0.11.0...v0.12.1 [0.12.0]: https://github.com/metaopt/optree/compare/v0.11.0...v0.12.0 diff --git a/optree/version.py b/optree/version.py index f3794dbb..d36dfc46 100644 --- a/optree/version.py +++ b/optree/version.py @@ -16,7 +16,7 @@ # pylint: disable=invalid-name -__version__ = '0.13.0' +__version__ = '0.13.1' __license__ = 'Apache License, Version 2.0' __author__ = 'OpTree Contributors' __release__ = False