Skip to content

Commit

Permalink
Bump version: 0.2.1 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanvg committed Oct 5, 2018
1 parent ddd5c15 commit de157ae
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion medallion/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.3.0
commit = True
tag = True

Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit de157ae

Please sign in to comment.