From ba899e8df5a7797b597c15a156ef0c75c38303c9 Mon Sep 17 00:00:00 2001 From: Aki Nitta Date: Tue, 21 Dec 2021 02:05:54 +0900 Subject: [PATCH] Prepare v0.5.0 (#787) * Update __about__.py * Update CHANGELOG.md --- CHANGELOG.md | 18 ++---------------- pl_bolts/__about__.py | 2 +- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7401ee5c..9b1d02d513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,45 +4,31 @@ All notable changes to this project will be documented in this file. 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). -## [unReleased] - 2021-MM-DD +## [0.5.0] - 2021-12-20 ### Added - Added YOLO model ([#552](https://github.com/PyTorchLightning/pytorch-lightning-bolts/pull/552)) - - - Added `SRGAN`, `SRImageLoggerCallback`, `TVTDataModule`, `SRCelebA`, `SRMNIST`, `SRSTL10` ([#466](https://github.com/PyTorchLightning/pytorch-lightning-bolts/pull/466)) - - - Added nn.Module support for FasterRCNN backbone ([#661](https://github.com/PyTorchLightning/lightning-bolts/pull/661)) - - - Added `RetinaNet` with torchvision backbones ([#529](https://github.com/PyTorchLightning/lightning-bolts/pull/529)) - - - Added Python 3.9 support ([#786](https://github.com/PyTorchLightning/lightning-bolts/pull/786)) - ### Changed - VAE now uses deterministic KL divergence during training, previously estimated KL divergence by random sampling ([#760](https://github.com/PyTorchLightning/lightning-bolts/pull/760)) -### Deprecated - - ### Removed - Removed PyTorch 1.6 support ([#786](https://github.com/PyTorchLightning/lightning-bolts/pull/786)) - - - Removed Python 3.6 support ([#785](https://github.com/PyTorchLightning/lightning-bolts/pull/785)) ### Fixed - Fixed doctest fails with ImportError: cannot import name 'Env' from 'gym' ([#751](https://github.com/PyTorchLightning/lightning-bolts/pull/751)) - - Fixed MoCo v2 missing Cosine Annealing learning scheduler ([#757](https://github.com/PyTorchLightning/lightning-bolts/pull/757)) + ## [0.4.0] - 2021-09-09 ### Added diff --git a/pl_bolts/__about__.py b/pl_bolts/__about__.py index df94938e4b..b866537f05 100644 --- a/pl_bolts/__about__.py +++ b/pl_bolts/__about__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.0dev" +__version__ = "0.5.0" __author__ = "PyTorchLightning et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"