diff --git a/CHANGES.txt b/CHANGES.txt index ac615bde..7acbfcc7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Version 1.1.1.9 +2017-01-18 +- Support Python 3.6 +- #321 Fix CIQ extensions. + Version 1.1.1.8 2017-01-18 - Update to support Python 3. diff --git a/docs/index.rst b/docs/index.rst index 897253bc..fb96b2e6 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -6,7 +6,7 @@ The **python-stix** library provides an API for developing and consuming *Struct .. note:: These docs provide standard reference for this Python library. For documentation on *idiomatic* usage and *common patterns*, as well as various STIX-related information and utilities, please visit the `STIXProject at GitHub`_. - + .. _STIXProject at GitHub: http://stixproject.github.io/ .. _STIX website: http://stix.mitre.org @@ -22,14 +22,14 @@ version of STIX. ============ =================== STIX Version python-stix Version ============ =================== -1.1.1 1.1.1.8 (`PyPI`__) (`GitHub`__) +1.1.1 1.1.1.9 (`PyPI`__) (`GitHub`__) 1.1.0 1.1.0.6 (`PyPI`__) (`GitHub`__) 1.0.1 1.0.1.1 (`PyPI`__) (`GitHub`__) 1.0 1.0.0a7 (`PyPI`__) (`GitHub`__) ============ =================== -__ https://pypi.python.org/pypi/stix/1.1.1.8 -__ https://github.com/STIXProject/python-stix/tree/v1.1.1.8 +__ https://pypi.python.org/pypi/stix/1.1.1.9 +__ https://github.com/STIXProject/python-stix/tree/v1.1.1.9 __ https://pypi.python.org/pypi/stix/1.1.0.6 __ https://github.com/STIXProject/python-stix/tree/v1.1.0.6 __ https://pypi.python.org/pypi/stix/1.0.1.1 @@ -80,4 +80,3 @@ Indices and tables * :ref:`genindex` * :ref:`modindex` * :ref:`search` - diff --git a/stix/version.py b/stix/version.py index 3c11893d..cdd762f7 100644 --- a/stix/version.py +++ b/stix/version.py @@ -1,4 +1,4 @@ # Copyright (c) 2016, The MITRE Corporation. All rights reserved. # See LICENSE.txt for complete terms. -__version__ = "1.1.1.8" +__version__ = "1.1.1.9"