mirror of
https://github.com/OpenKMIP/PyKMIP.git
synced 2025-04-08 19:25:06 +02:00
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:
parent
f8c76105c9
commit
8d89f19521
@ -2,6 +2,13 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
.. _v0.10:
|
||||
|
||||
0.10 - `master`_
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
.. note:: This version is not yet released and is under active development.
|
||||
|
||||
.. _v0.9:
|
||||
|
||||
0.9 - June 18, 2019
|
||||
|
@ -22,11 +22,17 @@ from kmip.pie import objects
|
||||
from kmip.pie.client import ProxyKmipClient as KmipClient
|
||||
|
||||
# Dynamically set __version__
|
||||
version_path = os.path.join(os.path.dirname(
|
||||
os.path.realpath(__file__)), 'version.py')
|
||||
with open(version_path, 'r') as version_file:
|
||||
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE)
|
||||
__version__ = mo.group(1)
|
||||
version_path = os.path.join(
|
||||
os.path.dirname(os.path.realpath(__file__)),
|
||||
"version.py"
|
||||
)
|
||||
with open(version_path, 'r') as f:
|
||||
m = re.search(
|
||||
r"^__version__ = \"(\d+\.\d+\..*)\"$",
|
||||
f.read(),
|
||||
re.MULTILINE
|
||||
)
|
||||
__version__ = m.group(1)
|
||||
|
||||
|
||||
__all__ = [
|
||||
|
@ -13,4 +13,4 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
__version__ = '0.9.0'
|
||||
__version__ = "0.10.dev1"
|
||||
|
17
setup.py
17
setup.py
@ -18,11 +18,18 @@ import re
|
||||
import setuptools
|
||||
|
||||
# Dynamically set __version__
|
||||
version_path = os.path.join(os.path.dirname(
|
||||
os.path.realpath(__file__)), 'kmip', 'version.py')
|
||||
with open(version_path, 'r') as version_file:
|
||||
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE)
|
||||
__version__ = mo.group(1)
|
||||
version_path = os.path.join(
|
||||
os.path.dirname(os.path.realpath(__file__)),
|
||||
"kmip",
|
||||
"version.py"
|
||||
)
|
||||
with open(version_path, 'r') as f:
|
||||
m = re.search(
|
||||
r"^__version__ = \"(\d+\.\d+\..*)\"$",
|
||||
f.read(),
|
||||
re.MULTILINE
|
||||
)
|
||||
__version__ = m.group(1)
|
||||
|
||||
setuptools.setup(
|
||||
name='PyKMIP',
|
||||
|
Loading…
x
Reference in New Issue
Block a user