From 61525f6047863c6fe950bfa716d2fd5f031dc300 Mon Sep 17 00:00:00 2001 From: tchaton Date: Tue, 1 Jun 2021 12:48:54 +0100 Subject: [PATCH] update changelog + increment version --- CHANGELOG.md | 7 +++++++ pytorch_lightning/__about__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4159606cddbf..9e1517ebc2b36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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.4] - 2021-06-01 + +### Fixed + +- Fixed info message when max training time reached ([#7780](https://github.com/PyTorchLightning/pytorch-lightning/pull/7780)) +- Fixed missing `__len__` method to `IndexBatchSamplerWrapper` ([#7681](https://github.com/PyTorchLightning/pytorch-lightning/pull/7681)) + ## [1.3.3] - 2021-05-27 ### Changed diff --git a/pytorch_lightning/__about__.py b/pytorch_lightning/__about__.py index f62cef02182c1..d8a5e153425a2 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.3' +__version__ = '1.3.4' __author__ = 'William Falcon et al.' __author_email__ = 'waf2107@columbia.edu' __license__ = 'Apache-2.0'