diff --git a/HISTORY.rst b/HISTORY.rst index 30d770be3e..b85f312a17 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -36,3 +36,11 @@ Release History - Adds cli functionality to add connections - Multiple additional minor fixes and changes + +0.1.5 (2019-09-26) +------------------- + +- Adds scaffolding command to the CLI tool +- Extended docs +- Increased test coverage +- Multiple additional minor fixes and changes diff --git a/aea/__version__.py b/aea/__version__.py index 11b814de56..2b89208cc1 100644 --- a/aea/__version__.py +++ b/aea/__version__.py @@ -23,7 +23,7 @@ __title__ = 'aea' __description__ = 'Autonomous Economic Agent framework' __url__ = 'https://github.com/fetchai/agents-aea.git' -__version__ = '0.1.4' +__version__ = '0.1.5' __author__ = 'Fetch.AI Limited' __license__ = 'Apache 2.0' __copyright__ = '2019 Fetch.AI Limited' diff --git a/develop-image/docker-env.sh b/develop-image/docker-env.sh index 1f4988b44f..bd7f005cfb 100755 --- a/develop-image/docker-env.sh +++ b/develop-image/docker-env.sh @@ -1,5 +1,5 @@ #!/bin/bash -DOCKER_IMAGE_TAG=aea-develop:0.1.4 +DOCKER_IMAGE_TAG=aea-develop:0.1.5 DOCKER_BUILD_CONTEXT_DIR=.. DOCKERFILE=./Dockerfile