From bab8b7cd7466ff8497c27e29dedff71f8c5d9092 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Tue, 26 Mar 2024 01:57:38 +0800 Subject: [PATCH] ver: bump version to 0.11.0 (#131) --- CHANGELOG.md | 27 ++++++++++++++++++++++----- optree/version.py | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ddb0ff..d975dcd5 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.11.0] - 2024-03-26 + +### Added + - Add function `is_namedtuple_instance` and `is_structseq_instance` and result caches by [@XuehaiPan](https://github.com/XuehaiPan) in [#121](https://github.com/metaopt/optree/pull/121). - Add `tree_iter` function by [@XuehaiPan](https://github.com/XuehaiPan) in [#130](https://github.com/metaopt/optree/pull/130). - Add API to unregister node type in the registry by [@XuehaiPan](https://github.com/XuehaiPan) in [#124](https://github.com/metaopt/optree/pull/124). @@ -36,10 +56,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix potential segmentation fault when modifying `treespec.entries()` by [@XuehaiPan](https://github.com/XuehaiPan) in [#116](https://github.com/metaopt/optree/pull/116). -### Removed - -- - ------ ## [0.10.0] - 2023-11-07 @@ -266,7 +282,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ -[Unreleased]: https://github.com/metaopt/optree/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/metaopt/optree/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/metaopt/optree/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/metaopt/optree/compare/v0.9.2...v0.10.0 [0.9.2]: https://github.com/metaopt/optree/compare/v0.9.1...v0.9.2 [0.9.1]: https://github.com/metaopt/optree/compare/v0.9.0...v0.9.1 diff --git a/optree/version.py b/optree/version.py index 8009363c..6330937a 100644 --- a/optree/version.py +++ b/optree/version.py @@ -14,7 +14,7 @@ # ============================================================================== """OpTree: Optimized PyTree Utilities.""" -__version__ = '0.10.0' +__version__ = '0.11.0' __license__ = 'Apache License, Version 2.0' __author__ = 'OpTree Contributors' __release__ = False