Skip to content

Commit 449d4ec

Browse files
committed
Add release notes
closes #10
1 parent 55de0ba commit 449d4ec

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ clean:
1717
test: $(ACTIVATE)
1818
$(VIRTUALENV_BIN)/python -m unittest discover -v
1919

20-
build-dist: clean $(ACTIVATE) lint test
20+
build-dist: clean $(ACTIVATE) test
2121
$(VIRTUALENV_BIN)/python setup.py sdist bdist_wheel
2222

2323
publish-dist: build-dist
24-
$(VIRTUALENV_BIN)/pip install twine==1.12.1 && \
24+
$(VIRTUALENV_BIN)/pip install twine==5.0.0 && \
2525
$(VIRTUALENV_BIN)/twine upload dist/*
2626

2727
$(VIRTUALENV) $(ACTIVATE):

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,12 @@ root
7070
├── standard-command
7171
└── tree - show the command tree of your CLI
7272
```
73+
74+
75+
Releasing:
76+
1. update `__version__` variable, and in `setup.py`
77+
1. git commit new version
78+
1. git tag -a {version}
79+
1. git push origin master --tags
80+
1. make publish-dist
81+
1. go to github UI and turn tag into a release

0 commit comments

Comments
 (0)