From b4c037fb61d8b8892af34423e2c67c81218d6f8e Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Fri, 9 Nov 2018 16:03:47 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 4 ++-- setup.cfg | 3 ++- setup.py | 2 +- taxii2client/__init__.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2dd9057..9bfa4a9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '0.4.0' +version = '0.5.0' # The full version, including alpha/beta/rc tags. -release = '0.4.0' +release = '0.5.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index e58f20b..c067acd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.5.0 commit = True tag = True @@ -14,3 +14,4 @@ license_file = LICENSE [bdist_wheel] universal = 1 + diff --git a/setup.py b/setup.py index b82f895..c48f609 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def get_long_description(): setup( name='taxii2-client', - version='0.4.0', + version='0.5.0', description='TAXII 2 Client Library', long_description=get_long_description(), url='https://github.com/oasis-open/cti-taxii-client', diff --git a/taxii2client/__init__.py b/taxii2client/__init__.py index cde9a2d..d001eec 100644 --- a/taxii2client/__init__.py +++ b/taxii2client/__init__.py @@ -12,7 +12,7 @@ import six import six.moves.urllib.parse as urlparse -__version__ = '0.4.0' +__version__ = '0.5.0' MEDIA_TYPE_STIX_V20 = "application/vnd.oasis.stix+json; version=2.0" MEDIA_TYPE_TAXII_V20 = "application/vnd.oasis.taxii+json; version=2.0"