Skip to content

Commit 39de7fe

Browse files
kaushikb11Bordapre-commit-ci[bot]
authored
Lightning Release v1.4 (#8579)
* Update Lightning version to v1.4 * update notebooks * Update release date in Changelog * docs Co-authored-by: Jirka <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent c7e5743 commit 39de7fe

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## [1.4.0] - 2021-MM-DD
8+
## [1.4.0] - 2021-07-27
99

1010
### Added
1111

_notebooks

docs/source/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,11 @@ def _transform_changelog(path_in: str, path_out: str) -> None:
142142
# List of patterns, relative to source directory, that match files and
143143
# directories to ignore when looking for source files.
144144
# This pattern also affects html_static_path and html_extra_path.
145-
exclude_patterns = [f"{FOLDER_GENERATED}/PULL_REQUEST_TEMPLATE.md", "notebooks/course_UvA-DL/*", "notebooks/template*"]
145+
exclude_patterns = [
146+
f"{FOLDER_GENERATED}/PULL_REQUEST_TEMPLATE.md",
147+
"notebooks/course_UvA-DL/*",
148+
"notebooks/sample-template*",
149+
]
146150

147151
# The name of the Pygments (syntax highlighting) style to use.
148152
pygments_style = None

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ PyTorch Lightning Documentation
6262
notebooks/lightning_examples/datamodules.ipynb
6363
notebooks/lightning_examples/cifar10-baseline.ipynb
6464
notebooks/lightning_examples/basic-gan.ipynb
65+
notebooks/lightning_examples/mnist-tpu-training.ipynb
6566
notebooks/lightning_examples/text-transformers.ipynb
6667
notebooks/lightning_examples/reinforce-learning-DQN.ipynb
6768
notebooks/lightning_examples/augmentation_kornia.ipynb

pytorch_lightning/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
_this_year = time.strftime("%Y")
4-
__version__ = "1.4.0rc2"
4+
__version__ = "1.4.0"
55
__author__ = "William Falcon et al."
66
__author_email__ = "[email protected]"
77
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)