continue towards 1.3 (#6069)

This commit is contained in:
Jirka Borovec 2021-02-19 02:13:54 +01:00 committed by GitHub
parent 3645eb1ec9
commit 0b271474e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 1 deletions

View File

@ -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/). 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 ## [1.2.0] - 2021-02-18
### Added ### Added

View File

@ -5,7 +5,7 @@ import os
import time import time
_this_year = time.strftime("%Y") _this_year = time.strftime("%Y")
__version__ = '1.2.0' __version__ = '1.3.0dev'
__author__ = 'William Falcon et al.' __author__ = 'William Falcon et al.'
__author_email__ = 'waf2107@columbia.edu' __author_email__ = 'waf2107@columbia.edu'
__license__ = 'Apache-2.0' __license__ = 'Apache-2.0'

View File

@ -52,6 +52,7 @@ CHECKPOINT_EXTENSION = ".ckpt"
"1.1.6", "1.1.6",
"1.1.7", "1.1.7",
"1.1.8", "1.1.8",
"1.2.0",
] ]
) )
def test_resume_legacy_checkpoints(tmpdir, pl_version): def test_resume_legacy_checkpoints(tmpdir, pl_version):