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

Commit

Permalink
Merge pull request #335 from fetchai/bumpversion-0.1.3
Browse files Browse the repository at this point in the history
Bump version number to 0.1.3
  • Loading branch information
DavidMinarsch authored Aug 9, 2019
2 parents 69842b0 + f4c704d commit 0eb7d96
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
10 changes: 9 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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'

0 comments on commit 0eb7d96

Please sign in to comment.