diff --git a/CHANGELOG.md b/CHANGELOG.md index b2e453c421..bc536c086b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.3.2] - 2021-03-DD +## [0.3.2] - 2021-03-20 ### Changed - Renamed SSL modules: `CPCV2` >> `CPC_v2` and `MocoV2` >> `Moco_v2` ([#585](https://github.com/PyTorchLightning/lightning-bolts/pull/585)) +- Refactored _setup.py_ to be typing friendly ([#601](https://github.com/PyTorchLightning/lightning-bolts/pull/601)) ## [0.3.1] - 2021-03-09 diff --git a/pl_bolts/info.py b/pl_bolts/info.py index aa8bfe58ac..e1fd7c64bf 100644 --- a/pl_bolts/info.py +++ b/pl_bolts/info.py @@ -1,4 +1,4 @@ -__version__ = '0.3.2rc1' +__version__ = '0.3.2' __author__ = 'PyTorchLightning et al.' __author_email__ = 'name@pytorchlightning.ai' __license__ = 'Apache-2.0'