Skip to content

Commit

Permalink
Merge pull request #286 from fetchai/feat/v0.1.9
Browse files Browse the repository at this point in the history
Feat/v0.1.9
  • Loading branch information
DavidMinarsch authored Oct 18, 2019
2 parents 4431d54 + 32ed6a8 commit 8ced1c1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aea/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 1 addition & 2 deletions deploy-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion deploy-image/docker-env.sh
Original file line number Diff line number Diff line change
@@ -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=..
Expand Down
2 changes: 1 addition & 1 deletion develop-image/docker-env.sh
Original file line number Diff line number Diff line change
@@ -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=..
Expand Down
2 changes: 1 addition & 1 deletion docs/skill-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8ced1c1

Please sign in to comment.