diff --git a/HISTORY.rst b/HISTORY.rst index c231fc9b..6accece0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -14,4 +14,12 @@ Release History 0.1.2 (2019-07-08) ------------------- -- Minor updates, many bug fixes, no breaking changes. \ No newline at end of file +- Minor updates, many bug fixes, no breaking changes. + +0.1.3 (2019-08-09) +------------------- + +- Updated to OEF SDK version 0.6 +- Improved documentation by adding detailed guides +- Added more tools/features to support the developer (e.g. the launcher app) + diff --git a/docs/conf.py b/docs/conf.py index 0302fc28..a68180ec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -68,14 +68,15 @@ copyright = '2019, Fetch.AI' author = 'Fetch.AI' +from tac import __version__ # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.1.2' +version = __version__ # The full version, including alpha/beta/rc tags. -release = '0.1.2' +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/tac/__init__.py b/tac/__init__.py index 3ac31afb..f6c941d0 100644 --- a/tac/__init__.py +++ b/tac/__init__.py @@ -23,7 +23,7 @@ import os from tac.__version__ import __title__, __description__, __url__, __version__ -from tac.__version__ import __build__, __author__, __license__, __copyright__ +from tac.__version__ import __author__, __license__, __copyright__ import logging @@ -37,3 +37,4 @@ logger.propagate = False ROOT_DIR = os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), "..") + diff --git a/tac/__version__.py b/tac/__version__.py index 72ccacf7..d346aab8 100644 --- a/tac/__version__.py +++ b/tac/__version__.py @@ -22,9 +22,8 @@ __title__ = 'tac' __description__ = 'Trading Agent Competition agents' -__url__ = 'https://github.com/uvue-git/tac-agents.git' -__version__ = '0.1.2' -__build__ = 0x000100 +__url__ = 'https://github.com/fetchai/agents-tac.git' +__version__ = '0.1.3' __author__ = 'Fetch.AI Limited' __license__ = 'Apache 2.0' -__copyright__ = '2018 Fetch.AI Limited' +__copyright__ = '2019 Fetch.AI Limited'