Skip to content

Commit c462b27

Browse files
SeanNarenBordakaushikb11
authored
Prepare 1.1.6 release (#5661)
* Parepre 1.1.6 release * Remove headers * Apply suggestions from code review * docs: Apply docs suggestions for release Co-authored-by: Jirka Borovec <[email protected]> Co-authored-by: Kaushik B <[email protected]>
1 parent ca68cac commit c462b27

File tree

2 files changed

+8
-26
lines changed

2 files changed

+8
-26
lines changed

CHANGELOG.md

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77

8-
## [unreleased.Bugfixes] - YYYY-MM-DD
9-
10-
### Added
11-
8+
## [1.1.6] - 2021-01-26
129

1310
### Changed
1411

1512
- Increased TPU check timeout from 20s to 100s ([#5598](https://github.com/PyTorchLightning/pytorch-lightning/pull/5598))
16-
17-
1813
- Ignored `step` param in Neptune logger's log_metric method ([#5510](https://github.com/PyTorchLightning/pytorch-lightning/pull/5510))
19-
20-
21-
### Deprecated
22-
23-
24-
### Removed
25-
14+
- Pass batch outputs to `on_train_batch_end` instead of `epoch_end` outputs ([#4369](https://github.com/PyTorchLightning/pytorch-lightning/pull/4369))
2615

2716
### Fixed
2817

29-
- Fixed `toggle_optimizer` to reset `requieres_grad` state ([#5574](https://github.com/PyTorchLightning/pytorch-lightning/pull/5574))
30-
31-
18+
- Fixed `toggle_optimizer` to reset `requires_grad` state ([#5574](https://github.com/PyTorchLightning/pytorch-lightning/pull/5574))
3219
- Fixed FileNotFoundError for best checkpoint when using DDP with Hydra ([#5629](https://github.com/PyTorchLightning/pytorch-lightning/pull/5629))
33-
34-
3520
- Fixed an error when logging a progress bar metric with a reserved name ([#5620](https://github.com/PyTorchLightning/pytorch-lightning/pull/5620))
36-
37-
3821
- Fixed `Metric`'s `state_dict` not included when child modules ([#5614](https://github.com/PyTorchLightning/pytorch-lightning/pull/5614))
39-
22+
- Fixed Neptune logger creating multiple experiments when GPUs > 1 ([#3256](https://github.com/PyTorchLightning/pytorch-lightning/pull/3256))
23+
- Fixed duplicate logs appearing in console when using the python logging module ([#5509](https://github.com/PyTorchLightning/pytorch-lightning/pull/5509))
24+
- Fixed tensor printing in `trainer.test()` ([#5138](https://github.com/PyTorchLightning/pytorch-lightning/pull/5138))
25+
- Fixed not using dataloader when `hparams` present ([#4559](https://github.com/PyTorchLightning/pytorch-lightning/pull/4559))
4026

4127
## [1.1.5] - 2021-01-19
4228

@@ -47,10 +33,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
4733
- Fixed `reinit_scheduler_properties` with correct optimizer ([#5519](https://github.com/PyTorchLightning/pytorch-lightning/pull/5519))
4834
- Fixed `val_check_interval` with `fast_dev_run` ([#5540](https://github.com/PyTorchLightning/pytorch-lightning/pull/5540))
4935

50-
51-
- Fixed duplicate logs appearing in console when using the python logging module ([#5509](https://github.com/PyTorchLightning/pytorch-lightning/pull/5509))
52-
53-
5436
## [1.1.4] - 2021-01-12
5537

5638
### Added

pytorch_lightning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import time
77

88
_this_year = time.strftime("%Y")
9-
__version__ = '1.1.5'
9+
__version__ = '1.1.6'
1010
__author__ = 'William Falcon et al.'
1111
__author_email__ = '[email protected]'
1212
__license__ = 'Apache-2.0'

0 commit comments

Comments
 (0)