From b9b3ec5e4ffbd10cf69a03e299f0837f7091d669 Mon Sep 17 00:00:00 2001 From: jirka Date: Tue, 11 May 2021 09:19:26 +0200 Subject: [PATCH] v1.3.1 --- CHANGELOG.md | 18 ++---------------- docs/source/governance.rst | 2 -- pytorch_lightning/__about__.py | 2 +- 3 files changed, 3 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6323fd62e1c..2bd9dd13a6a01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,27 +5,13 @@ 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.3.x] - 2021-MM-DD - -### Added - - -### Changed - - -### Deprecated - - -### Removed - +## [1.3.1] - 2021-05-11 ### Fixed - - Fixed DeepSpeed with IterableDatasets ([#7362](https://github.com/PyTorchLightning/pytorch-lightning/pull/7362)) - - - Fixed `Trainer.current_epoch` not getting restored after tuning ([#7434](https://github.com/PyTorchLightning/pytorch-lightning/pull/7434)) +- Fixed local rank displayed in console log ([#7395](https://github.com/PyTorchLightning/pytorch-lightning/pull/7395)) ## [1.3.0] - 2021-05-06 diff --git a/docs/source/governance.rst b/docs/source/governance.rst index fac8b68e1df53..5b1f9bd1916c1 100644 --- a/docs/source/governance.rst +++ b/docs/source/governance.rst @@ -38,5 +38,3 @@ Alumni - Jeff Ling (`jeffling `_) - Teddy Koker (`teddykoker `_) - Nate Raw (`nateraw `_) - - diff --git a/pytorch_lightning/__about__.py b/pytorch_lightning/__about__.py index a333cdb3e6ecd..67ca6d9e8d167 100644 --- a/pytorch_lightning/__about__.py +++ b/pytorch_lightning/__about__.py @@ -1,7 +1,7 @@ import time _this_year = time.strftime("%Y") -__version__ = '1.3.0' +__version__ = '1.3.1' __author__ = 'William Falcon et al.' __author_email__ = 'waf2107@columbia.edu' __license__ = 'Apache-2.0'