Skip to content

Commit 695e051

Browse files
authored
cleaning (#2449)
1 parent 927f305 commit 695e051

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7-
## [unreleased] - YYYY-MM-DD
7+
## [0.8.4] - 2020-07-01
88

99
### Added
1010

@@ -14,27 +14,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1414

1515
### Changed
1616

17-
18-
### Deprecated
19-
20-
21-
### Removed
22-
17+
- Enabled no returns from eval ([#2446](https://github.com/PyTorchLightning/pytorch-lightning/pull/2446))
2318

2419
### Fixed
2520

2621
- Fixes train outputs ([#2428](https://github.com/PyTorchLightning/pytorch-lightning/pull/2428))
27-
2822
- Fixes Conda dependencies ([#2412](https://github.com/PyTorchLightning/pytorch-lightning/pull/2412))
29-
3023
- Fixed Apex scaling with decoupled backward ([#2433](https://github.com/PyTorchLightning/pytorch-lightning/pull/2433))
31-
3224
- Fixed crashing or wrong displaying progressbar because of missing ipywidgets ([#2417](https://github.com/PyTorchLightning/pytorch-lightning/pull/2417))
33-
3425
- Fixed TPU saving dir ([fc26078e](https://github.com/PyTorchLightning/pytorch-lightning/commit/fc26078e395f8a001f4c6dd7b3fe7ca202f914a3), [04e68f02](https://github.com/PyTorchLightning/pytorch-lightning/commit/04e68f022fc03dd5f1555ee86dea997d42a448ad))
35-
3626
- Fixed logging on rank 0 only ([#2425](https://github.com/PyTorchLightning/pytorch-lightning/pull/2425))
3727

28+
3829
## [0.8.3] - 2020-06-29
3930

4031
### Fixed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,15 @@ conda install pytorch-lightning -c conda-forge
6161
## Docs
6262
- [master](https://pytorch-lightning.readthedocs.io/en/latest)
6363
- [stable](https://pytorch-lightning.readthedocs.io/en/stable)
64+
- [0.8.4](https://pytorch-lightning.readthedocs.io/en/0.8.4/)
6465
- [0.8.3](https://pytorch-lightning.readthedocs.io/en/0.8.3/)
6566
- [0.8.1](https://pytorch-lightning.readthedocs.io/en/0.8.1/)
6667
- [0.7.6](https://pytorch-lightning.readthedocs.io/en/0.7.6/)
6768
- [0.7.5](https://pytorch-lightning.readthedocs.io/en/0.7.5/)
6869
- [0.7.3](https://pytorch-lightning.readthedocs.io/en/0.7.3/)
6970
- [0.7.1](https://pytorch-lightning.readthedocs.io/en/0.7.1/)
7071
- [0.6.0](https://pytorch-lightning.readthedocs.io/en/0.6.0/)
71-
- [0.5.3.2](https://pytorch-lightning.readthedocs.io/en/0.5.3.2/)
72+
- [0.5.3](https://pytorch-lightning.readthedocs.io/en/0.5.3.2/)
7273

7374
## Refactoring your PyTorch code + benefits + full walk-through
7475
[![Watch the video](docs/source/_images/general/tutorial_cover.jpg)](https://www.youtube.com/watch?v=QHww1JH7IDU)

pytorch_lightning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Root package info."""
22

3-
__version__ = '0.8.4-dev'
3+
__version__ = '0.8.4'
44
__author__ = 'William Falcon et al.'
55
__author_email__ = '[email protected]'
66
__license__ = 'Apache-2.0'

0 commit comments

Comments
 (0)