diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d013f12f..efc726b26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Removed + +### Changed + +### Fixed + +### Docs + + +## [0.7.2] - 2023-03-02 + +### Added + - Add support for learning rate schedulers. ([#679](https://github.com/jina-ai/finetuner/pull/679)) ### Removed diff --git a/setup.cfg b/setup.cfg index 463311a64..a29cae19f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.7.1 +version = 0.7.2 [flake8] # E501 is too long lines - ignore as black takes care of that diff --git a/setup.py b/setup.py index 4055fcf9f..79506eb57 100644 --- a/setup.py +++ b/setup.py @@ -29,12 +29,12 @@ install_requires=[ 'docarray[common]>=0.21.0', 'trimesh==3.16.4', - 'finetuner-stubs==0.12.7rc2', + 'finetuner-stubs==0.12.7', 'jina-hubble-sdk==0.33.1', ], extras_require={ 'full': [ - 'finetuner-commons==0.12.7rc2', + 'finetuner-commons==0.12.7', ], 'test': [ 'black==22.3.0',