Skip to content

Commit 83e8bc6

Browse files
committed
Release v0.1.0
1 parent 2b1f3c5 commit 83e8bc6

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Added
1212

13+
### Changed
14+
15+
### Fixed
16+
17+
18+
## v0.1.0
19+
20+
### Added
21+
1322
* A CHANGELOG.md file.
1423
* New vision datasets: FC100, tiered-Imagenet, FGVCAircraft, VGGFlowers102.
1524
* New vision examples: Reptile & ANIL.

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ docs:
4747
docs-deploy:
4848
cd docs && pydocmd gh-deploy
4949

50+
# https://dev.to/neshaz/a-tutorial-for-tagging-releases-in-git-147e
51+
release:
52+
echo 'Do not forget to bump the CHANGELOG.md'
53+
echo 'Tagging v'$(shell python -c 'print(open("learn2learn/_version.py").read()[15:-2])')
54+
sleep 3
55+
git tag -a v$(shell python -c 'print(open("learn2learn/_version.py").read()[15:-2])')
56+
git push origin --tags
57+
5058
publish:
5159
python setup.py sdist
5260
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

learn2learn/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.6.1'
1+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)