This commit is contained in:
Jirka Borovec 2020-07-01 14:35:51 +02:00 committed by GitHub
parent 7f1eab4cad
commit dcd6000be7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 2 deletions

View File

@ -4,12 +4,29 @@ 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] - YYYY-MM-DD
### Added
### Changed
### Deprecated
### Removed
### Fixed
## [0.8.4] - 2020-07-01
### Added
- Added reduce ddp results on eval ([#2434](https://github.com/PyTorchLightning/pytorch-lightning/pull/2434))
- Added a warning when an `IterableDataset` has `__len__` defined ([#2437](https://github.com/PyTorchLightning/pytorch-lightning/pull/2437))
### Changed

View File

@ -1,6 +1,6 @@
"""Root package info."""
__version__ = '0.8.4'
__version__ = '0.8.5-dev'
__author__ = 'William Falcon et al.'
__author_email__ = 'waf2107@columbia.edu'
__license__ = 'Apache-2.0'