Skip to content

Commit

Permalink
updated version number. Noted in docs what files need to be changed w…
Browse files Browse the repository at this point in the history
…hen changing version numbers
  • Loading branch information
ntelfer committed Oct 17, 2018
1 parent 555cd98 commit fdf5858
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docs/building_releases.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Versions
Use Semantic versioning as described [here](https://semver.org/) when releasing any new code.
Use Semantic versioning as described [here](https://semver.org/) when releasing any new code. There are two files that need to be updated with the new version number:
```bash
didery/src/didery/__init_.py
didery/setup.py
```

# Building Wheels
Make sure you have installed the packaging dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _unavailable(self, e):

setup(
name='didery',
version="0.1.0",
version="0.1.1",
license='Apache2',
description='DIDery Key Management Server',
long_description="Redundant persistent backup of key rotation events and otp encrypted private keys.",
Expand Down
2 changes: 1 addition & 1 deletion src/didery/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit fdf5858

Please sign in to comment.