From 652df1886abc63820d956aef7a468ff4cf1bea7f Mon Sep 17 00:00:00 2001 From: Sean Naren Date: Tue, 12 Jan 2021 18:53:10 +0000 Subject: [PATCH] Increment version, update CHANGELOG.md (#5482) --- CHANGELOG.md | 14 +++++--------- pytorch_lightning/__init__.py | 2 +- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c32b93cc0..066745b4c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,22 +9,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added +- Add automatic optimization property setter to lightning module ([#5169](https://github.com/PyTorchLightning/pytorch-lightning/pull/5169)) ### Changed -- Changed depreceated `enable_pl_optimizer=True` ([#5244](https://github.com/PyTorchLightning/pytorch-lightning/pull/5244)) - - -### Deprecated - - -### Removed - +- Changed deprecated `enable_pl_optimizer=True` ([#5244](https://github.com/PyTorchLightning/pytorch-lightning/pull/5244)) ### Fixed - Fixed `transfer_batch_to_device` for DDP with `len(devices_ids) == 1` ([#5195](https://github.com/PyTorchLightning/pytorch-lightning/pull/5195)) - +- Logging only on `not should_accumulate()` during training ([#5417](https://github.com/PyTorchLightning/pytorch-lightning/pull/5417)) +- Resolve interpolation bug with Hydra ([#5406](https://github.com/PyTorchLightning/pytorch-lightning/pull/5406)) +- Check environ before selecting a seed to prevent warning message ([#4743](https://github.com/PyTorchLightning/pytorch-lightning/pull/4743)) ## [1.1.3] - 2021-01-05 diff --git a/pytorch_lightning/__init__.py b/pytorch_lightning/__init__.py index 2e35207d05..1f672dcd9a 100644 --- a/pytorch_lightning/__init__.py +++ b/pytorch_lightning/__init__.py @@ -5,7 +5,7 @@ import os import time _this_year = time.strftime("%Y") -__version__ = '1.1.3' +__version__ = '1.1.4' __author__ = 'William Falcon et al.' __author_email__ = 'waf2107@columbia.edu' __license__ = 'Apache-2.0'