mirror of
https://github.com/OpenKMIP/PyKMIP.git
synced 2025-07-07 22:24:22 +02:00
Merge pull request #367 from OpenKMIP/feat/bump-version
Update the PyKMIP library version to 0.8.dev
This commit is contained in:
commit
cf6ad944b7
@ -1,3 +1,6 @@
|
|||||||
|
0.8 - master
|
||||||
|
- This version is under active development and has not been released.
|
||||||
|
|
||||||
0.7.0 - November 14, 2017
|
0.7.0 - November 14, 2017
|
||||||
* Add support for Python 3.6
|
* Add support for Python 3.6
|
||||||
* Add support for the InitialDate attribute
|
* Add support for the InitialDate attribute
|
||||||
|
@ -25,7 +25,7 @@ from kmip.pie.client import ProxyKmipClient as KmipClient
|
|||||||
version_path = os.path.join(os.path.dirname(
|
version_path = os.path.join(os.path.dirname(
|
||||||
os.path.realpath(__file__)), 'version.py')
|
os.path.realpath(__file__)), 'version.py')
|
||||||
with open(version_path, 'r') as version_file:
|
with open(version_path, 'r') as version_file:
|
||||||
mo = re.search(r"^.*= '(\d\.\d\.\d)'$", version_file.read(), re.MULTILINE)
|
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE)
|
||||||
__version__ = mo.group(1)
|
__version__ = mo.group(1)
|
||||||
|
|
||||||
|
|
||||||
|
@ -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.7.0'
|
__version__ = '0.8.dev'
|
||||||
|
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ import setuptools
|
|||||||
version_path = os.path.join(os.path.dirname(
|
version_path = os.path.join(os.path.dirname(
|
||||||
os.path.realpath(__file__)), 'kmip', 'version.py')
|
os.path.realpath(__file__)), 'kmip', 'version.py')
|
||||||
with open(version_path, 'r') as version_file:
|
with open(version_path, 'r') as version_file:
|
||||||
mo = re.search(r"^.*= '(\d\.\d\.\d)'$", version_file.read(), re.MULTILINE)
|
mo = re.search(r"^.*= '(\d\.\d\..*)'$", version_file.read(), re.MULTILINE)
|
||||||
__version__ = mo.group(1)
|
__version__ = mo.group(1)
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user