Skip to content

Commit e0e402d

Browse files
authored
Docs/changelog for 1.0.3 (#4267)
* formatting * miss * missing & ver++ * path
1 parent c336881 commit e0e402d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci_pkg-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
if: runner.os == 'windows'
4545
run: |
4646
# this is just a hotfix because of Win cannot install it directly
47-
pip install -r requirements.txt --find-links https://download.pytorch.org/whl/torch_stable.html
47+
pip install -r requirements.txt --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
4848
4949
- name: Install package
5050
run: |

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ 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] - YYYY-MM-DD
8+
## [1.0.3] - 2020-10-20
99

1010
### Added
1111

12+
- Added persistent flag to `Metric.add_state` ([#4195](https://github.com/PyTorchLightning/pytorch-lightning/pull/4195))
1213

1314
### Changed
1415

15-
16-
### Deprecated
17-
18-
19-
### Removed
20-
16+
- Used `checkpoint_connector.hpc_save` in SLURM ([#4217](https://github.com/PyTorchLightning/pytorch-lightning/pull/4217))
17+
- Moved base req. to root ([#4219](https://github.com/PyTorchLightning/pytorch-lightning/pull/4219))
2118

2219
### Fixed
2320

21+
- Fixed `hparams` assign in init ([#4189](https://github.com/PyTorchLightning/pytorch-lightning/pull/4189))
22+
- Fixed overwrite check for model hooks ([#4010](https://github.com/PyTorchLightning/pytorch-lightning/pull/4010))
23+
2424

2525
## [1.0.2] - 2020-10-15
2626

@@ -38,7 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
3838

3939
### Fixed
4040

41-
- Fixed the self.log problem in validation_step() ([#4169](https://github.com/PyTorchLightning/pytorch-lightning/pull/4169))
41+
- Fixed the `self.log` problem in `validation_step()` ([#4169](https://github.com/PyTorchLightning/pytorch-lightning/pull/4169))
4242
- Fixed `hparams` saving - save the state when `save_hyperparameters()` is called [in `__init__`] ([#4163](https://github.com/PyTorchLightning/pytorch-lightning/pull/4163))
4343
- Fixed runtime failure while exporting `hparams` to yaml ([#4158](https://github.com/PyTorchLightning/pytorch-lightning/pull/4158))
4444

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__ = '1.0.2'
3+
__version__ = '1.0.3'
44
__author__ = 'William Falcon et al.'
55
__author_email__ = '[email protected]'
66
__license__ = 'Apache-2.0'

0 commit comments

Comments
 (0)