Increment version, update CHANGELOG.md (#5482)
This commit is contained in:
parent
c00d5709c4
commit
652df1886a
14
CHANGELOG.md
14
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
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue