Skip to content

Commit

Permalink
Bump version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
crisidev committed May 15, 2017
1 parent 934f096 commit 3f0f0df
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ apt-get install libffi-dev libssl-dev
pip install vault-ca
```

## Documentation
[https://vault-ca.readthedocs.io/en/latest/index.html](https://vault-ca.readthedocs.io/en/latest/index.html)

## How to
### Initialize the Vault
Vault need to be initialized without SSL certificates and than switched.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
# built documents.
#
# The short X.Y version.
version = '0.4'
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = 'alpha'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from distutils.core import setup
from setuptools import find_packages, Command

VERSION = 0.4
VERSION = 0.5


class FormatCommand(Command):
Expand Down
2 changes: 1 addition & 1 deletion vault_ca/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import requests
from OpenSSL.crypto import load_certificate, FILETYPE_PEM, Error

VERSION = 0.4
VERSION = 0.5

# fix incompatibility between python 3.4 and 3.5+ json implementation
if not hasattr(json, 'JSONDecodeError'): # pragma: nocover
Expand Down

0 comments on commit 3f0f0df

Please sign in to comment.