Skip to content

Commit 8753011

Browse files
committed
ver: bump version to 0.7.1
1 parent 08be4e8 commit 8753011

File tree

4 files changed

+27
-9
lines changed

4 files changed

+27
-9
lines changed

CHANGELOG.md

+22-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Added
1515

16+
-
17+
18+
### Changed
19+
20+
-
21+
22+
### Fixed
23+
24+
-
25+
26+
### Removed
27+
28+
-
29+
30+
------
31+
32+
## [0.7.1] - 2023-05-12
33+
34+
### Added
35+
1636
- 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).
1737
- 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).
1838
- Enable tests on Windows by [@XuehaiPan](https://github.com/XuehaiPan) in [#140](https://github.com/metaopt/torchopt/pull/140).
1939
- 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).
2040
- 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).
2141

22-
### Changed
23-
24-
-
25-
2642
### Fixed
2743

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

172188
------
173189

174-
[Unreleased]: https://github.com/metaopt/torchopt/compare/v0.7.0...HEAD
190+
[Unreleased]: https://github.com/metaopt/torchopt/compare/v0.7.1...HEAD
191+
[0.7.1]: https://github.com/metaopt/torchopt/compare/v0.7.0...v0.7.1
175192
[0.7.0]: https://github.com/metaopt/torchopt/compare/v0.6.0...v0.7.0
176193
[0.6.0]: https://github.com/metaopt/torchopt/compare/v0.5.0...v0.6.0
177194
[0.5.0]: https://github.com/metaopt/torchopt/compare/v0.4.3...v0.5.0

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ authors:
3232
family-names: Yang
3333
affiliation: Peking University
3434
35-
version: 0.7.0
36-
date-released: "2023-02-16"
35+
version: 0.7.1
36+
date-released: "2023-05-12"
3737
license: Apache-2.0
3838
repository-code: "https://github.com/metaopt/torchopt"

conda-recipe.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,5 @@ dependencies:
100100
- clang-format >= 14
101101
- clang-tools >= 14 # clang-tidy
102102
- cpplint
103-
- pre-commit
103+
- conda-forge::pre-commit
104+
- conda-forge::identify

torchopt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ==============================================================================
1515
"""TorchOpt: a high-performance optimizer library built upon PyTorch."""
1616

17-
__version__ = '0.7.0'
17+
__version__ = '0.7.1'
1818
__license__ = 'Apache License, Version 2.0'
1919
__author__ = 'TorchOpt Contributors'
2020
__release__ = False

0 commit comments

Comments
 (0)