From cc908ddc6c148516b5c574b9d3bc113f9d2f796b Mon Sep 17 00:00:00 2001 From: Carlos Mocholi Date: Tue, 15 Jun 2021 14:22:34 +0200 Subject: [PATCH] CHANGELOG update after v1.3.6 release --- CHANGELOG.md | 12 +++++++----- tests/checkpointing/test_legacy_checkpoints.py | 1 + 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd2b01db6c0aa..ac4c737d0868f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -226,11 +226,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed -- Fixed setting `worker_init_fn` to seed dataloaders correctly when using DDP ([#7942](https://github.com/PyTorchLightning/pytorch-lightning/pull/7942)) - - -- Fixed `DataModule.prepare_data` could only be called on the global rank 0 process ([#7945](https://github.com/PyTorchLightning/pytorch-lightning/pull/7945)) - - Fixed ambiguous warning when both overfit and train dataloader shuffling are enabled ([#7685](https://github.com/PyTorchLightning/pytorch-lightning/pull/7685)) @@ -247,6 +242,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `dataloader_idx` argument value when predicting with only one `DataLoader` ([#7941](https://github.com/PyTorchLightning/pytorch-lightning/pull/7941)) +## [1.3.6] - 2021-06-15 + +### Fixed + +- Fixed logs overwriting issue for remote filesystems ([#7889](https://github.com/PyTorchLightning/pytorch-lightning/pull/7889)) +- Fixed `DataModule.prepare_data` could only be called on the global rank 0 process ([#7945](https://github.com/PyTorchLightning/pytorch-lightning/pull/7945)) +- Fixed setting `worker_init_fn` to seed dataloaders correctly when using DDP ([#7942](https://github.com/PyTorchLightning/pytorch-lightning/pull/7942)) - Fixed `BaseFinetuning` callback to properly handle parent modules w/ parameters ([#7931](https://github.com/PyTorchLightning/pytorch-lightning/pull/7931)) diff --git a/tests/checkpointing/test_legacy_checkpoints.py b/tests/checkpointing/test_legacy_checkpoints.py index 2082549cdb526..abd6abfc036f3 100644 --- a/tests/checkpointing/test_legacy_checkpoints.py +++ b/tests/checkpointing/test_legacy_checkpoints.py @@ -68,6 +68,7 @@ "1.3.3", "1.3.4", "1.3.5", + "1.3.6", ] ) def test_resume_legacy_checkpoints(tmpdir, pl_version: str):