From 073b7352791787c36876e1db54931958d886f58b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Tue, 2 Nov 2021 18:24:28 +0100 Subject: [PATCH] Lightning 1.5 release (#10306) * update changelog * update version in about * update references to 1.5 in readme Co-authored-by: thomas chaton --- CHANGELOG.md | 6 ++---- README.md | 2 +- pytorch_lightning/__about__.py | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce04130a82db3..8055c53eeb524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [1.5.0] - 2021-MM-DD +## [1.5.0] - 2021-11-02 ### Added @@ -305,9 +305,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed an issue with `pl.utilities.seed.reset_seed` converting the `PL_SEED_WORKERS` environment variable to `bool` ([#10099](https://github.com/PyTorchLightning/pytorch-lightning/pull/10099)) - Fixed iterating over a logger collection when `fast_dev_run > 0` ([#10232](https://github.com/PyTorchLightning/pytorch-lightning/pull/10232)) - Fixed `batch_size` in `ResultCollection` not being reset to 1 on epoch end ([#10242](https://github.com/PyTorchLightning/pytorch-lightning/pull/10242)) - - -- Fixed `distrib_type` not being set when Training Plugin instances being passed to Trainer ([#10251](https://github.com/PyTorchLightning/pytorch-lightning/pull/10251)) +- Fixed `distrib_type` not being set when training plugin instances are being passed to the Trainer ([#10251](https://github.com/PyTorchLightning/pytorch-lightning/pull/10251)) ## [1.4.9] - 2021-09-30 diff --git a/README.md b/README.md index 7dd5272956ae1..8df98d14cac75 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Install future release from the source pip install git+https://github.com/PytorchLightning/pytorch-lightning.git@release/1.4.x --upgrade ``` -#### Install bleeding-edge - future 1.5 +#### Install bleeding-edge - future 1.6 Install nightly from the source (no guarantees) diff --git a/pytorch_lightning/__about__.py b/pytorch_lightning/__about__.py index 77460cfda6f98..dc61686e5dbea 100644 --- a/pytorch_lightning/__about__.py +++ b/pytorch_lightning/__about__.py @@ -1,7 +1,7 @@ import time _this_year = time.strftime("%Y") -__version__ = "1.5.0rc1" +__version__ = "1.5.0" __author__ = "William Falcon et al." __author_email__ = "waf2107@columbia.edu" __license__ = "Apache-2.0"