Skip to content

Commit 2c34e18

Browse files
committed
ver: bump version to 0.6.0
1 parent a760c83 commit 2c34e18

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

CHANGELOG.md

+22-7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ 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.6.0] - 2022-12-07
33+
34+
### Added
35+
1636
- Add unroll pragma for CUDA OPs by [@JieRen98](https://github.com/JieRen98) and [@XuehaiPan](https://github.com/XuehaiPan) in [#112](https://github.com/metaopt/torchopt/pull/112).
1737
- Add Python implementation of accelerated OP and pure-Python wheels by [@XuehaiPan](https://github.com/XuehaiPan) in [#67](https://github.com/metaopt/torchopt/pull/67).
1838
- Add `nan_to_num` hook and gradient transformation by [@XuehaiPan](https://github.com/XuehaiPan) in [#119](https://github.com/metaopt/torchopt/pull/119).
@@ -42,12 +62,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4262
- Fix LR scheduling by [@XuehaiPan](https://github.com/XuehaiPan) in [#76](https://github.com/metaopt/torchopt/pull/76).
4363
- Fix the step count tensor (`shape=(1,)`) can change the shape of the scalar updates (`shape=()`) by [@XuehaiPan](https://github.com/XuehaiPan) in [#71](https://github.com/metaopt/torchopt/pull/71).
4464

45-
### Removed
46-
47-
48-
49-
------
50-
5165
## [0.5.0] - 2022-09-05
5266

5367
### Added
@@ -133,7 +147,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
133147

134148
------
135149

136-
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.5.0...HEAD
150+
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.0...HEAD
151+
[0.6.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.5.0...v0.6.0
137152
[0.5.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.4.3...v0.5.0
138153
[0.4.3]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.4.2...v0.4.3
139154
[0.4.2]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.4.1...v0.4.2

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
email: yaodong.yang@pku.edu.cn
35-
version: 0.5.0
36-
date-released: "2022-09-05"
35+
version: 0.6.0
36+
date-released: "2022-12-07"
3737
license: Apache-2.0
3838
repository-code: "https://github.com/metaopt/torchopt"

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.5.0'
17+
__version__ = '0.6.0'
1818
__license__ = 'Apache License, Version 2.0'
1919
__author__ = 'TorchOpt Contributors'
2020
__release__ = False

0 commit comments

Comments
 (0)