diff --git a/CHANGELOG.md b/CHANGELOG.md index 5caef5f6509e3..444f58fef63f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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.5.10] - 2022-02-08 + +### Fixed + +- + +- + + ## [1.5.9] - 2022-01-18 ### Fixed @@ -29,6 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed a race condition that could result in incorrect (zero) values being observed in prediction writer callbacks ([#11288](https://github.com/PyTorchLightning/pytorch-lightning/pull/11288)) - Fixed dataloaders not getting reloaded the correct amount of times when setting `reload_dataloaders_every_n_epochs` and `check_val_every_n_epoch` ([#10948](https://github.com/PyTorchLightning/pytorch-lightning/pull/10948)) + ## [1.5.7] - 2021-12-21 ### Fixed diff --git a/pytorch_lightning/__about__.py b/pytorch_lightning/__about__.py index 3f0cb9ee1441b..83335912ce29e 100644 --- a/pytorch_lightning/__about__.py +++ b/pytorch_lightning/__about__.py @@ -1,7 +1,7 @@ import time _this_year = time.strftime("%Y") -__version__ = "1.5.9" +__version__ = "1.5.10" __author__ = "William Falcon et al." __author_email__ = "waf2107@columbia.edu" __license__ = "Apache-2.0"