Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 811d559

Browse files
committed
v0.2.2
1 parent 024b3be commit 811d559

9 files changed

Lines changed: 14 additions & 19 deletions

File tree

.github/workflows/ci-install-pkg.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Install package
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [ master ]
6+
branches: [master, "release/*"]
77
pull_request:
8-
branches: [master]
8+
branches: [master, "release/*"]
99

1010
jobs:
1111
pkg-check:

.github/workflows/ci-notebook.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI notebook
22
on:
33
push:
4-
branches: [master]
4+
branches: [master, "release/*"]
55
pull_request:
6-
branches: [master]
6+
branches: [master, "release/*"]
77

88
jobs:
99
build:

.github/workflows/ci-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: CI testing
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"]
77
pull_request:
8-
branches: [master]
8+
branches: [master, "release/*"]
99

1010
jobs:
1111
pytest:

.github/workflows/code-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Check Code formatting
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push: {}
66
pull_request:
7-
branches: [master]
7+
branches: [master, "release/*"]
88

99
jobs:
1010
pep8-check-flake8:

.github/workflows/docs-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: "Check Docs"
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push: {}
66
pull_request:
7-
branches: [master]
7+
branches: [master, "release/*"]
88

99
jobs:
1010
sphinx-docs:

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: PyPI Release
33
# https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"]
77
release:
88
types: [created]
99

CHANGELOG.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,17 @@ 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-
## [0.2.2] - 2021-MM-DD
9-
10-
### Added
11-
12-
8+
## [0.2.2] - 2021-04-05
139

1410
### Changed
1511

1612
- Switch to use `torchmetrics` ([#169](https://github.com/PyTorchLightning/lightning-flash/pull/169))
17-
13+
- Update lightning version to v1.2 ([#133](https://github.com/PyTorchLightning/lightning-flash/pull/133))
1814

1915
### Fixed
2016

2117
- Fixed classification softmax ([#169](https://github.com/PyTorchLightning/lightning-flash/pull/169))
22-
23-
### Removed
18+
- Don't download data if exists ([#157](https://github.com/PyTorchLightning/lightning-flash/pull/157))
2419

2520

2621
## [0.2.1] - 2021-3-06

flash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""Root package info."""
1515
import os
1616

17-
__version__ = "0.2.2rc2"
17+
__version__ = "0.2.2"
1818
__author__ = "PyTorchLightning et al."
1919
__author_email__ = "name@pytorchlightning.ai"
2020
__license__ = 'Apache-2.0'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ numpy # comes with 3rd-party dependency
1313
tqdm # comes with 3rd-party dependency
1414
rouge-score>=0.0.4
1515
sentencepiece>=0.1.95
16-
lightning-bolts==0.3.2rc1 # todo: we shall align with proper release
16+
lightning-bolts==0.3.2
1717
filelock # comes with 3rd-party dependency
1818
pycocotools>=2.0.2 ; python_version >= "3.7"

0 commit comments

Comments
 (0)