Bump version: 0.0.1 → 0.1.0

stix2.1 v0.1.0
Greg Back 2017-05-22 10:17:39 -05:00
parent b4dfa07a20
commit 33cc4caa36
4 changed files with 12 additions and 4 deletions

View File

@ -1,6 +1,12 @@
CHANGELOG 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 0.0.1 - 2017-02-24
* First packaged version * First packaged version

View File

@ -9,8 +9,8 @@ project = 'stix2'
copyright = '2017, OASIS Open' copyright = '2017, OASIS Open'
author = 'OASIS Open' author = 'OASIS Open'
version = '0.0.1' version = '0.1.0'
release = '0.0.1' release = '0.1.0'
language = None language = None
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

View File

@ -1,10 +1,12 @@
[bumpversion] [bumpversion]
current_version = 0.0.1 current_version = 0.1.0
commit = True commit = True
tag = True tag = True
[bumpversion:file:setup.py] [bumpversion:file:setup.py]
[bumpversion:file:docs/conf.py]
[bdist_wheel] [bdist_wheel]
universal = 1 universal = 1

View File

@ -10,7 +10,7 @@ install_requires = [
setup( setup(
name='stix2', name='stix2',
description="Produce and consume STIX 2 JSON content", description="Produce and consume STIX 2 JSON content",
version='0.0.1', version='0.1.0',
packages=find_packages(), packages=find_packages(),
install_requires=install_requires, install_requires=install_requires,
keywords="stix stix2 json cti cyber threat intelligence", keywords="stix stix2 json cti cyber threat intelligence",