- Update HISTORY.rst
- Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
#!/usr/bin/python | |
############################################################################################################## | |
# Extract information about a number. # | |
# # | |
# Example Usage: python infonum.py --bit 4 0xf # | |
# Output: # | |
# Base 10: -1 # | |
# Base 16: f # | |
# 2's Compliment binary: 1111 # |