CHANGELOG + version update
This commit is contained in:
parent
08bb0a9863
commit
0ad68f5b11
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -5,6 +5,17 @@ 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.3] - 2022-05-03
|
||||
|
||||
### Fixed
|
||||
|
||||
- Use only a single instance of `rich.console.Console` throughout codebase ([#12886](https://github.com/PyTorchLightning/pytorch-lightning/pull/12886))
|
||||
- Fixed an issue to ensure all the checkpoint states are saved in a common filepath with `DeepspeedStrategy` ([#12887](https://github.com/PyTorchLightning/pytorch-lightning/pull/12887))
|
||||
- Fixed `trainer.logger` deprecation message ([#12671](https://github.com/PyTorchLightning/pytorch-lightning/pull/12671))
|
||||
- Fixed an issue where sharded grad scaler is passed in when using BF16 with the `ShardedStrategy` ([#12915](https://github.com/PyTorchLightning/pytorch-lightning/pull/12915))
|
||||
- Fixed printing of ragged dictionaries in `Trainer.validate` and `Trainer.test` ([#12857](https://github.com/PyTorchLightning/pytorch-lightning/pull/12857))
|
||||
|
||||
|
||||
## [1.6.2] - 2022-04-27
|
||||
|
||||
### Fixed
|
||||
|
@ -15,12 +26,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
|||
- Fixed support for `ModelCheckpoint` monitors with dots ([#12783](https://github.com/PyTorchLightning/pytorch-lightning/pull/12783))
|
||||
|
||||
|
||||
- Use only a single instance of `rich.console.Console` throughout codebase ([#12886](https://github.com/PyTorchLightning/pytorch-lightning/pull/12886))
|
||||
|
||||
|
||||
- Fixed an issue to ensure all the checkpoint states are saved in a common filepath with `DeepspeedStrategy` ([#12887](https://github.com/PyTorchLightning/pytorch-lightning/pull/12887))
|
||||
|
||||
|
||||
## [1.6.1] - 2022-04-13
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import time
|
||||
|
||||
_this_year = time.strftime("%Y")
|
||||
__version__ = "1.6.2"
|
||||
__version__ = "1.6.3"
|
||||
__author__ = "William Falcon et al."
|
||||
__author_email__ = "waf2107@columbia.edu"
|
||||
__license__ = "Apache-2.0"
|
||||
|
|
Loading…
Reference in New Issue