diff --git a/CHANGELOG b/CHANGELOG index ad33e2a3..c3d14357 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,12 @@ CHANGELOG ========= +0.1.0 - 2017-05-22 + +* Include support for serializing/deserializing all STIX objects and Cyber + Observable objects. +* Markings are supported but not validated. + 0.0.1 - 2017-02-24 * First packaged version diff --git a/docs/conf.py b/docs/conf.py index e5b99171..6af7d67a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,8 +9,8 @@ copyright = '2017, OASIS Open' author = 'OASIS Open' -version = '0.0.1' -release = '0.0.1' +version = '0.1.0' +release = '0.1.0' language = None exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] diff --git a/setup.cfg b/setup.cfg index 88d35b72..e78ab360 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,12 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True [bumpversion:file:setup.py] +[bumpversion:file:docs/conf.py] + [bdist_wheel] universal = 1 diff --git a/setup.py b/setup.py index 0fbad776..26743a41 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='stix2', description="Produce and consume STIX 2 JSON content", - version='0.0.1', + version='0.1.0', packages=find_packages(), install_requires=install_requires, keywords="stix stix2 json cti cyber threat intelligence",