From 1e43f07c309cf418e618872d0e43566118eeaa81 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Thu, 3 Nov 2022 17:31:28 +0900 Subject: [PATCH] Prepare 0.6.0 release (#932) Co-authored-by: Rohit Gupta Co-authored-by: Jirka Borovec --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++---------- pl_bolts/__about__.py | 14 ++++++++------ 2 files changed, 37 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43efe5101a..ecd5872150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,22 +4,41 @@ 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.6.0] - 2022-11-02 ### Added - -### Changed - - -### Deprecated - - -### Removed - +- Updated SparseML callback for latest PyTorch Lightning ([#822](https://github.com/Lightning-AI/lightning-bolts/822)) +- Updated torch version to v1.10.X ([#815](https://github.com/Lightning-AI/lightning-bolts/815)) +- Dataset specific args method to CIFAR10, ImageNet, MNIST, and STL10 ([#890](https://github.com/Lightning-AI/lightning-bolts/890)) +- Migrate to use `lightning-utilities` ([#907](https://github.com/Lightning-AI/lightning-bolts/907)) +- Support PyTorch Lightning v1.8 ([#910](https://github.com/Lightning-AI/lightning-bolts/910)) + +- Major revision of Bolts + * `under_review` flag ([#835](https://github.com/Lightning-AI/lightning-bolts/pull/835), [#837](https://github.com/Lightning-AI/lightning-bolts/pull/837)) + * Reviewing GAN basics, `VisionDataModule`, `MNISTDataModule`, `CIFAR10DataModule` ([#843](https://github.com/Lightning-AI/lightning-bolts/pull/843)) + * Added tests, updated doc-strings for Dummy Datasets ([#865](https://github.com/Lightning-AI/lightning-bolts/pull/865)) + * Binary MNIST/EMNIST Datasets and Datamodules ([#866](https://github.com/Lightning-AI/lightning-bolts/pull/866)) + * FashionMNIST/EMNIST Datamodules ([#871](https://github.com/Lightning-AI/lightning-bolts/pull/871)) + * Revision `ArrayDataset` ([#872](https://github.com/Lightning-AI/lightning-bolts/pull/872)) + * BYOL weight update callback ([#867](https://github.com/Lightning-AI/lightning-bolts/pull/867)) + * Revision `models.vision.unet`, `models.vision.segmentation` ([#880](https://github.com/Lightning-AI/lightning-bolts/pull/880)) + * Revision of SimCLR transforms ([#857](https://github.com/Lightning-AI/lightning-bolts/pull/857)) + * Revision Metrics ([#878](https://github.com/Lightning-AI/lightning-bolts/pull/878), [#887](https://github.com/Lightning-AI/lightning-bolts/pull/887)) + * Revision of BYOL module and tests ([#874](https://github.com/Lightning-AI/lightning-bolts/pull/874)) + * Revision of MNIST module ([#873](https://github.com/Lightning-AI/lightning-bolts/pull/873)) + * Revision of dataset normalizations ([#898](https://github.com/Lightning-AI/lightning-bolts/pull/898)) + * Revision of SimSiam module and tests ([#891](https://github.com/Lightning-AI/lightning-bolts/pull/891)) + * Revision `datasets.kitti_dataset.KittiDataset` ([#896](https://github.com/Lightning-AI/lightning-bolts/pull/896)) + * SWAV improvements ([#903](https://github.com/Lightning-AI/lightning-bolts/pull/903)) + * minor dcgan-import fix ([#921](https://github.com/Lightning-AI/lightning-bolts/pull/921)) ### Fixed +- Removing extra flatten ([#809](https://github.com/Lightning-AI/lightning-bolts/809)) +- support number of channels!=3 in YOLOConfiguration ([#806](https://github.com/Lightning-AI/lightning-bolts/806)) +- CVE-2007-4559 Patch ([#894](https://github.com/Lightning-AI/lightning-bolts/894)) + ## [0.5.0] - 2021-12-20 diff --git a/pl_bolts/__about__.py b/pl_bolts/__about__.py index e050a2188c..590c4645df 100644 --- a/pl_bolts/__about__.py +++ b/pl_bolts/__about__.py @@ -1,10 +1,12 @@ -__version__ = "0.6.0dev" -__author__ = "PyTorchLightning et al." -__author_email__ = "name@pytorchlightning.ai" +import time + +__version__ = "0.6.0" +__author__ = "Lightning AI et al." +__author_email__ = "pytorch@lightning.ai" __license__ = "Apache-2.0" -__copyright__ = f"Copyright (c) 2020-2021, {__author__}" -__homepage__ = "https://github.com/PyTorchLightning/lightning-bolts" -__docs__ = "PyTorch Lightning Bolts is a community contribution for ML researchers." +__copyright__ = f"Copyright (c) 2020-{time.strftime('%Y')}, {__author__}." +__homepage__ = "https://github.com/Lightning-AI/lightning-bolts" +__docs__ = "Lightning Bolts is a community contribution for ML researchers." __long_doc__ = """ What is it? -----------