Skip to content

Commit

Permalink
ver: bump version to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
XuehaiPan committed May 12, 2023
1 parent 08be4e8 commit 8753011
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 9 deletions.
27 changes: 22 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

-

### Changed

-

### Fixed

-

### Removed

-

------

## [0.7.1] - 2023-05-12

### Added

- Enable CI workflow to build CXX/CUDA extension for Python 3.11 by [@XuehaiPan](https://github.com/XuehaiPan) in [#152](https://github.com/metaopt/torchopt/pull/152).
- Implement AdaGrad optimizer and exponential learning rate decay schedule by [@Benjamin-eecs](https://github.com/Benjamin-eecs) and [@XuehaiPan](https://github.com/XuehaiPan) in [#80](https://github.com/metaopt/torchopt/pull/80).
- Enable tests on Windows by [@XuehaiPan](https://github.com/XuehaiPan) in [#140](https://github.com/metaopt/torchopt/pull/140).
- Add `ruff` and `flake8` plugins integration by [@XuehaiPan](https://github.com/XuehaiPan) in [#138](https://github.com/metaopt/torchopt/pull/138) and [#139](https://github.com/metaopt/torchopt/pull/139).
- Add more documentation on implicit differentiation by [@Benjamin-eecs](https://github.com/Benjamin-eecs) and [@XuehaiPan](https://github.com/XuehaiPan) in [#143](https://github.com/metaopt/torchopt/pull/143).

### Changed

-

### Fixed

- Fix overloaded annotations of `extract_state_dict` by [@StefanoWoerner](https://github.com/StefanoWoerner) in [#162](https://github.com/metaopt/torchopt/pull/162).
Expand Down Expand Up @@ -171,7 +187,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

------

[Unreleased]: https://github.com/metaopt/torchopt/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/metaopt/torchopt/compare/v0.7.1...HEAD
[0.7.1]: https://github.com/metaopt/torchopt/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/metaopt/torchopt/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/metaopt/torchopt/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/metaopt/torchopt/compare/v0.4.3...v0.5.0
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ authors:
family-names: Yang
affiliation: Peking University
email: yaodong.yang@pku.edu.cn
version: 0.7.0
date-released: "2023-02-16"
version: 0.7.1
date-released: "2023-05-12"
license: Apache-2.0
repository-code: "https://github.com/metaopt/torchopt"
3 changes: 2 additions & 1 deletion conda-recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,5 @@ dependencies:
- clang-format >= 14
- clang-tools >= 14 # clang-tidy
- cpplint
- pre-commit
- conda-forge::pre-commit
- conda-forge::identify
2 changes: 1 addition & 1 deletion torchopt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# ==============================================================================
"""TorchOpt: a high-performance optimizer library built upon PyTorch."""

__version__ = '0.7.0'
__version__ = '0.7.1'
__license__ = 'Apache License, Version 2.0'
__author__ = 'TorchOpt Contributors'
__release__ = False
Expand Down

0 comments on commit 8753011

Please sign in to comment.