diff --git a/CHANGES.txt b/CHANGES.txt index f9c5157d..34b901c8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -Version 0.3 +Version 0.3.0 2018-10-05 - #41 Fixed MemoryBackend bug where checking for an object was incorrectly being performed. - #34 Performance enhancements for the MongoDBBackend. diff --git a/README.rst b/README.rst index e5f4f522..720017e5 100644 --- a/README.rst +++ b/README.rst @@ -53,7 +53,7 @@ Medallion provides a command-line interface to start the TAXII Server:: [--log-level {DEBUG,INFO,WARN,ERROR,CRITICAL}] CONFIG_PATH - medallion v0.2.1 + medallion v0.3.0 positional arguments: CONFIG_PATH The location of the JSON configuration file to use. diff --git a/docs/conf.py b/docs/conf.py index d00d5a08..4e40bc38 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.2.1' +version = '0.3.0' # The full version, including alpha/beta/rc tags. -release = '0.2.1' +release = '0.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/medallion/version.py b/medallion/version.py index 3ced3581..493f7415 100644 --- a/medallion/version.py +++ b/medallion/version.py @@ -1 +1 @@ -__version__ = "0.2.1" +__version__ = "0.3.0" diff --git a/setup.cfg b/setup.cfg index 22aa2a07..30a542bf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.3.0 commit = True tag = True diff --git a/setup.py b/setup.py index 8701dcd7..9f8174b5 100644 --- a/setup.py +++ b/setup.py @@ -17,14 +17,16 @@ def get_version(): raise AttributeError("Package does not have a __version__") -with open('README.rst') as f: - readme = f.read() +def get_long_description(): + with open('README.rst') as f: + return f.read() + setup( name="medallion", version=get_version(), description="A TAXII 2.0 Server.", - long_description=readme, + long_description=get_long_description(), url='https://github.com/oasis-open/cti-taxii-server', author='OASIS Cyber Threat Intelligence Technical Committee', author_email='cti-users@lists.oasis-open.org',