Skip to content

Commit 8f1951d

Browse files
committed
Bump to v0.1.3.
1 parent d44cfe1 commit 8f1951d

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ 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+
## v0.1.3
18+
19+
### Added
20+
1321
* A CHANGELOG.md file.
1422

1523
### Changed

Makefile

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dist-a2c:
2020
OMP_NUM_THREADS=1 \
2121
MKL_NUM_THREADS=1 \
2222
python -m torch.distributed.launch \
23-
--nproc_per_node=16 \
23+
--nproc_per_node=6 \
2424
examples/atari/dist_a2c_atari.py
2525

2626
a2c:
@@ -102,6 +102,14 @@ docs:
102102
docs-deploy:
103103
cd docs && pydocmd gh-deploy
104104

105+
# https://dev.to/neshaz/a-tutorial-for-tagging-releases-in-git-147e
106+
release:
107+
echo 'Do not forget to bump the CHANGELOG.md'
108+
echo 'Tagging v'$(shell python -c 'print(open("cherry/_version.py").read()[15:-2])')
109+
sleep 3
110+
git tag -a v$(shell python -c 'print(open("cherry/_version.py").read()[15:-2])')
111+
git push origin --tags
112+
105113
publish:
106-
python setup.py sdist
107-
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
114+
python setup.py sdist # Create package
115+
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* # Push to PyPI

cherry/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.2'
1+
__version__ = '0.1.3'

0 commit comments

Comments
 (0)