changelog + version update

This commit is contained in:
otaj 2022-04-26 20:21:35 +02:00 committed by lexierule
parent 3649f734d9
commit 305c21835b
2 changed files with 2 additions and 9 deletions

View File

@ -5,20 +5,13 @@ 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/).
## [1.6.2] - 2022-04-26
## [1.6.2] - 2022-04-27
### Fixed
- Fixed `ImportError` when `torch.distributed` is not available. ([#12794](https://github.com/PyTorchLightning/pytorch-lightning/pull/12794))
- When using custom DataLoaders in LightningDataModule, multiple inheritance is resolved properly ([#12716](https://github.com/PyTorchLightning/pytorch-lightning/pull/12716))
- Fixed encoding issues on terminals that do not support unicode characters ([#12828](https://github.com/PyTorchLightning/pytorch-lightning/pull/12828))
- Fixed support for `ModelCheckpoint` monitors with dots ([#12783](https://github.com/PyTorchLightning/pytorch-lightning/pull/12783))

View File

@ -1,7 +1,7 @@
import time
_this_year = time.strftime("%Y")
__version__ = "1.6.1"
__version__ = "1.6.2"
__author__ = "William Falcon et al."
__author_email__ = "waf2107@columbia.edu"
__license__ = "Apache-2.0"