From 5577453a6d7072724d9ae24184daf8f45d4baff7 Mon Sep 17 00:00:00 2001 From: Jirka Date: Sat, 17 Apr 2021 15:59:30 +0200 Subject: [PATCH] v0.3.3 --- CHANGELOG.md | 7 ++++++- pl_bolts/__about__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df9d6a7868..324b1e7fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,16 @@ 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.3] - 2021-04-DD +## [0.3.3] - 2021-04-17 ### Changed - Suppressed missing package warnings, conditioned by `WARN_MISSING_PACKAGE="1"` ([#617](/~https://github.com/PyTorchLightning/lightning-bolts/pull/617)) +- Updated all scripts to LARS ([#613](/~https://github.com/PyTorchLightning/lightning-bolts/pull/613)) + +### Fixed + +- Add missing `dataclass` requirements ([#618](/~https://github.com/PyTorchLightning/lightning-bolts/pull/618)) ## [0.3.2] - 2021-03-20 diff --git a/pl_bolts/__about__.py b/pl_bolts/__about__.py index e44938c19f..006fafff12 100644 --- a/pl_bolts/__about__.py +++ b/pl_bolts/__about__.py @@ -1,4 +1,4 @@ -__version__ = '0.3.3rc' +__version__ = '0.3.3' __author__ = 'PyTorchLightning et al.' __author_email__ = 'name@pytorchlightning.ai' __license__ = 'Apache-2.0'