Bump the library version to 0.10.dev1

This change updates the library version to the next dev version
and updates the changelog to reflect this.
This commit is contained in:
Peter Hamilton 2019-06-18 14:03:39 -04:00 committed by Peter Hamilton
parent f8c76105c9
commit 8d89f19521
4 changed files with 31 additions and 11 deletions

View File

@ -2,6 +2,13 @@
Changelog Changelog
========= =========
.. _v0.10:
0.10 - `master`_
~~~~~~~~~~~~~~~~
.. note:: This version is not yet released and is under active development.
.. _v0.9: .. _v0.9:
0.9 - June 18, 2019 0.9 - June 18, 2019

View File

@ -22,11 +22,17 @@ from kmip.pie import objects
from kmip.pie.client import ProxyKmipClient as KmipClient from kmip.pie.client import ProxyKmipClient as KmipClient
# Dynamically set __version__ # Dynamically set __version__
version_path = os.path.join(os.path.dirname( version_path = os.path.join(
os.path.realpath(__file__)), 'version.py') os.path.dirname(os.path.realpath(__file__)),
with open(version_path, 'r') as version_file: "version.py"
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE) )
__version__ = mo.group(1) with open(version_path, 'r') as f:
m = re.search(
r"^__version__ = \"(\d+\.\d+\..*)\"$",
f.read(),
re.MULTILINE
)
__version__ = m.group(1)
__all__ = [ __all__ = [

View File

@ -13,4 +13,4 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
__version__ = '0.9.0' __version__ = "0.10.dev1"

View File

@ -18,11 +18,18 @@ import re
import setuptools import setuptools
# Dynamically set __version__ # Dynamically set __version__
version_path = os.path.join(os.path.dirname( version_path = os.path.join(
os.path.realpath(__file__)), 'kmip', 'version.py') os.path.dirname(os.path.realpath(__file__)),
with open(version_path, 'r') as version_file: "kmip",
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE) "version.py"
__version__ = mo.group(1) )
with open(version_path, 'r') as f:
m = re.search(
r"^__version__ = \"(\d+\.\d+\..*)\"$",
f.read(),
re.MULTILINE
)
__version__ = m.group(1)
setuptools.setup( setuptools.setup(
name='PyKMIP', name='PyKMIP',