From 5b55eacf2b3b54edda7e09c40302527124fc8251 Mon Sep 17 00:00:00 2001 From: David Minarsch Date: Fri, 18 Oct 2019 23:44:13 +0200 Subject: [PATCH 1/2] Prepare develop for version 0.1.9 --- HISTORY.rst | 7 +++++++ README.md | 4 ---- aea/__version__.py | 2 +- deploy-image/README.md | 3 +-- deploy-image/docker-env.sh | 2 +- develop-image/docker-env.sh | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index bf8c31ef21..f34354f8da 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -69,3 +69,10 @@ Release History - Adds full test coverage on cli - Improves docs - Multiple additional minor fixes and changes + +0.1.9 (2019-10-18) +------------------- + +- Stability improvements +- Higher test coverage, including on Python 3.6 +- Multiple additional minor fixes and changes diff --git a/README.md b/README.md index a1b56153b1..f66852947d 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,6 @@ The following dependency is only relevant if you intend to contribute to the rep The following steps are only relevant if you intend to contribute to the repository. They are not required for agent development. -- Clear cache - - pipenv --clear - - Install development dependencies: pipenv install --dev diff --git a/aea/__version__.py b/aea/__version__.py index 6d4c90140f..0d65f86f57 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.8' +__version__ = '0.1.9' __author__ = 'Fetch.AI Limited' __license__ = 'Apache 2.0' __copyright__ = '2019 Fetch.AI Limited' diff --git a/deploy-image/README.md b/deploy-image/README.md index f0fdd671a8..c582d1ba1b 100644 --- a/deploy-image/README.md +++ b/deploy-image/README.md @@ -6,8 +6,7 @@ All the commands must be executed from the parent directory, if not stated other We recommend using the following command for building: - ./deploy-image/scripts/docker-build-img.sh \ - -t aea-deploy:latest -- + ./deploy-image/scripts/docker-build-img.sh -t aea-deploy:latest -- ## Run diff --git a/deploy-image/docker-env.sh b/deploy-image/docker-env.sh index dc61a6ee56..95bf4ed780 100755 --- a/deploy-image/docker-env.sh +++ b/deploy-image/docker-env.sh @@ -1,7 +1,7 @@ #!/bin/bash # Swap the following lines if you want to work with 'latest' -DOCKER_IMAGE_TAG=aea-deploy:0.1.8 +DOCKER_IMAGE_TAG=aea-deploy:0.1.9 # DOCKER_IMAGE_TAG=aea-deploy:latest DOCKER_BUILD_CONTEXT_DIR=.. diff --git a/develop-image/docker-env.sh b/develop-image/docker-env.sh index e9d1c10396..af077bb35c 100755 --- a/develop-image/docker-env.sh +++ b/develop-image/docker-env.sh @@ -1,7 +1,7 @@ #!/bin/bash # Swap the following lines if you want to work with 'latest' -DOCKER_IMAGE_TAG=aea-develop:0.1.8 +DOCKER_IMAGE_TAG=aea-develop:0.1.9 # DOCKER_IMAGE_TAG=aea-develop:latest DOCKER_BUILD_CONTEXT_DIR=.. From 32ed6a80ba1fe202d62cd1d56f6e5830361725ac Mon Sep 17 00:00:00 2001 From: David Minarsch Date: Fri, 18 Oct 2019 23:48:51 +0200 Subject: [PATCH 2/2] Updates docs --- docs/skill-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/skill-guide.md b/docs/skill-guide.md index 610d9ea4dc..2f96d3f941 100644 --- a/docs/skill-guide.md +++ b/docs/skill-guide.md @@ -13,7 +13,7 @@ aea create my_agent && cd my_agent aea scaffold skill my_search ``` -In the following steps, we will replace each one of the scaffolded `Behaviour`, `Handler` and `Task` in `my_agent/skills/my_search` with our implementation. +In the following steps, we will replace each one of the scaffolded `Behaviour`, `Handler` and `Task` in `my_agent/skills/my_search` with our implementation. We will build a simple skill which lets the agent send a search query to the [OEF](https://docs.fetch.ai/oef/) and process the resulting response. ## Step 2: Develop a Behaviour