diff --git a/CHANGELOG.md b/CHANGELOG.md index b80afe7b24..2ad54381a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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/). +## [UnReleased] - 2021-MM-DD + +### Added + + +### Changed + + +### Deprecated + + +### Removed + + +### Fixed + + ## [1.2.0] - 2021-02-18 ### Added diff --git a/pytorch_lightning/__init__.py b/pytorch_lightning/__init__.py index b816a4e8aa..43c0837e13 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.2.0' +__version__ = '1.3.0dev' __author__ = 'William Falcon et al.' __author_email__ = 'waf2107@columbia.edu' __license__ = 'Apache-2.0' diff --git a/tests/checkpointing/test_legacy_checkpoints.py b/tests/checkpointing/test_legacy_checkpoints.py index 7b1a7facbb..abc692daf1 100644 --- a/tests/checkpointing/test_legacy_checkpoints.py +++ b/tests/checkpointing/test_legacy_checkpoints.py @@ -52,6 +52,7 @@ CHECKPOINT_EXTENSION = ".ckpt" "1.1.6", "1.1.7", "1.1.8", + "1.2.0", ] ) def test_resume_legacy_checkpoints(tmpdir, pl_version):