Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Bump version number to 0.1.3 #335

Merged
merged 5 commits into from Aug 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion HISTORY.rst
Expand Up @@ -14,4 +14,12 @@ Release History
0.1.2 (2019-07-08)
-------------------

- Minor updates, many bug fixes, no breaking changes.
- 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)

5 changes: 3 additions & 2 deletions docs/conf.py
Expand Up @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion tac/__init__.py
Expand Up @@ -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

Expand All @@ -37,3 +37,4 @@
logger.propagate = False

ROOT_DIR = os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), "..")

7 changes: 3 additions & 4 deletions tac/__version__.py
Expand Up @@ -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'