From 5689e27f7e7f7d15e92b6cf96444f95e0b4846ae Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Tue, 6 Aug 2019 21:16:15 +0100 Subject: Information on how to make a release --- RELEASE.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..42d6fdc --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,24 @@ +How to make a release +===================== + +1. Bump the version in `z80count/z80count.py` and commit the change. +2. Tag that commit with the same version number. +3. Push the commit and the tags (with --tags). +4. Build dist files: +``` +rm -f dist/* +python setup.py sdist bdist_wheel +python3 setup.py sdist bdist_wheel +``` +5. Publish on PyPi: +``` +twine upload dist/* +``` + +The release can be checked at: https://pypi.org/project/z80count/ + +Version numbers +--------------- + +Read: https://semver.org/ + -- cgit v1.2.3