Skip to content

Commit

Permalink
Merge pull request #215 from valory-xyz/feat/v1.12.0
Browse files Browse the repository at this point in the history
Feat/v1.12.0
  • Loading branch information
angrybayblade authored Jul 6, 2022
2 parents ca8bc7f + 151980b commit d72f99a
Show file tree
Hide file tree
Showing 87 changed files with 205 additions and 179 deletions.
1 change: 1 addition & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ multiaddr
tox
python3.10
skaffold
io
- docs/language-agnostic-definition.md
fetchai
protocol_id
Expand Down
19 changes: 19 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Release History - open AEA


## 1.12.0 (2022-07-6)

AEA:
- Updated the default IPFS node multiaddr to the production one
- Fixes CSV io issues on windows
- Makes `publish` command patchable for `open-autonomy`

Plugins:
- Introduces the `raise_on_retry` parameter to the ledgers.

Docs:
- Updates the default font family
- Updates documentation to use IPFS hashes to work with the components

Chore:
- Fixes resolution issues for `packaging` dependency
- Introduces script to check IPFS hash consistency in the documentation

## 1.11.0 (2022-06-22)

AEA:
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ The following table shows which versions of `open-aea` are currently being suppo

| Version | Supported |
| --------- | ------------------ |
| `1.11.x` | :white_check_mark: |
| `< 1.11.0` | :x: |
| `1.12.x` | :white_check_mark: |
| `< 1.12.0` | :x: |

## Reporting a Vulnerability

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__ = "open-aea"
__description__ = "Open Autonomous Economic Agent framework (without vendor lock-in)"
__url__ = "https://github.com/valory-xyz/open-aea.git"
__version__ = "1.11.0"
__version__ = "1.12.0"
__author__ = "Valory AG"
__license__ = "Apache-2.0"
__copyright__ = "2021 Valory AG, 2019 Fetch.AI Limited"
2 changes: 1 addition & 1 deletion deploy-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apk add --no-cache go

# aea installation
RUN pip install --upgrade pip
RUN pip install --upgrade --force-reinstall open-aea[all]==1.11.0
RUN pip install --upgrade --force-reinstall open-aea[all]==1.12.0

# directories and aea cli config
COPY /.aea /home/.aea
Expand Down
2 changes: 1 addition & 1 deletion deploy-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The example uses the `fetchai/my_first_aea` project. You will likely want to mod
Install subversion, then download the example directory to your local working directory

``` bash
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.11.0/packages packages
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.12.0/packages packages
```

### Modify scripts
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=valory/open-aea-develop:1.11.0
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.12.0
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest

DOCKER_BUILD_CONTEXT_DIR=..
Expand Down
2 changes: 1 addition & 1 deletion docs/agent-vs-aea.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ aea create my_aea # create an agent
cd my_aea
aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQFgc4z --remote # get a connection from the remote registry
aea push connection fetchai/stub --local # push to local registry
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea # delete the agent
Expand Down
2 changes: 1 addition & 1 deletion docs/build-aea-programmatically.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Get the needed packages from IPFS:
mkdir packages
aea create my_aea
cd my_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/decision-maker-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, get the packages directory from IPFS:
mkdir packages
aea create my_aea
cd my_aea
aea add protocol open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote
aea add protocol open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote
aea push protocol open_aea/signing --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/echo_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This demo assumes you have followed the setup guide.
The fastest way to have your first AEA is to fetch one that already exists!

``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```
### Install AEA dependencies
Expand Down
4 changes: 2 additions & 2 deletions docs/gym-skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Follow the <a href="../quickstart/#preliminaries">Preliminaries</a> and <a href=

First, fetch the gym AEA:
``` bash
aea fetch open_aea/gym_aea:0.1.0:QmNVoBXZP9bs1DkVrA74mPw6uCuSniFm7NkFMo3A2nRtS3 --remote
aea fetch open_aea/gym_aea:0.1.0:QmVx4N6ZWqqdRgNw5euHZsJDkC2kUZUo494hKpmPXWcKLP --remote
cd gym_aea
aea install
```
Expand All @@ -36,7 +36,7 @@ cd my_gym_aea

### Add the gym skill
``` bash
aea add skill fetchai/gym:0.20.0:QmTqPWwPXVPRH1Rg9xq4obCHnUpXAyTCoo8cBEcyz4YVfg --remote
aea add skill fetchai/gym:0.20.0:QmYnGJzk9JfSDREa8FyLqQxDnGUKwjrpFQYSuV8aho3uCV --remote
```

### Set gym connection as default
Expand Down
6 changes: 3 additions & 3 deletions docs/http-connection-and-skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Add the http server connection package:
mkdir packages
aea create my_aea
cd my_aea
aea add connection fetchai/http_server:0.22.0:QmbTKQYumbrBQBwSy91GyEhKr4kgGD2S9rHjybb3EDD8PA --remote
aea add connection fetchai/http_server:0.22.0:QmbJ2Bcv156rY4ikSc7RB6Z4EwsXeZW1MqvdYcjw4kKY9z --remote
aea push connection fetchai/http_server --local
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
aea add protocol fetchai/http:1.0.0:QmVUoaxD2pMd2czgrUjFH6LifM8h9KUt4TzRRPjUHCCYyv --remote
aea add protocol fetchai/http:1.0.0:Qmdz2FD7P9VXzUMZpLUh3DV5YtgWZwJKDxxw78heeaHv4M --remote
aea push protocol fetchai/http --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/http-echo-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The easiest way to get started with the http server is to use our pre-built exam

``` bash
pipenv shell
aea fetch open_aea/http_echo:0.1.0:QmNh1RY6SP4JDdB2P9aXjsPNsrjLiPdTRkgDfJEwS6ToVb --remote
aea fetch open_aea/http_echo:0.1.0:QmbxJbfm94zgXq4W3PNrd32JnrniSv5QxL6ANQJTt2jRMy --remote
cd http_echo
aea generate-key ethereum; aea add-key ethereum
aea run --aev
Expand Down
4 changes: 2 additions & 2 deletions docs/ipfs_registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ Packages can be downloaded using both extended public ids and hashes

Add the signing protocol using

`aea add protocol QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote`
`aea add protocol QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote`

Or

`aea add protocol open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote`
`aea add protocol open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote`

## Publishing agents

Expand Down
2 changes: 1 addition & 1 deletion docs/multiplexer-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, get the required packages from IPFS.
mkdir packages
aea create my_aea
cd my_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push connection fetchai/default --local
aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQFgc4z --remote
aea push connection fetchai/stub --local
Expand Down
4 changes: 2 additions & 2 deletions docs/p2p-connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Create one AEA as follows:
``` bash
aea create my_genesis_aea
cd my_genesis_aea
aea add connection valory/p2p_libp2p:0.1.0:QmYyTVCipGK4ef3q62KUDHgf5A729ztPZ7k54NbSUxvhU7 --remote
aea add connection valory/p2p_libp2p:0.1.0:QmQNMWYrzxDastciN9TdgKHVVffxUie33B7esD9ggJmw79 --remote
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
aea install
aea build
Expand Down Expand Up @@ -58,7 +58,7 @@ Create a second AEA:
``` bash
aea create my_other_aea
cd my_other_aea
aea add connection valory/p2p_libp2p:0.1.0:QmYyTVCipGK4ef3q62KUDHgf5A729ztPZ7k54NbSUxvhU7 --remote
aea add connection valory/p2p_libp2p:0.1.0:QmQNMWYrzxDastciN9TdgKHVVffxUie33B7esD9ggJmw79 --remote
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
aea install
aea build
Expand Down
6 changes: 3 additions & 3 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ This is a simple demo that introduces you to the main components of an AEA.
The fastest way to have your first AEA is to fetch one that already exists!

``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```
### Install AEA dependencies
Expand Down Expand Up @@ -262,7 +262,7 @@ aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQ
<br>
Third, add the echo skill to the project.
``` bash
aea add skill fetchai/echo:0.19.0:QmQxMpYwxRNCNzEqWaPmNXFTWgu4Xmz89ZjTp2TQu3wbPM --remote
aea add skill fetchai/echo:0.19.0:QmWGXT761veL8iK7ZroBRGExxAYKpHhvQcAvnLjwoqT1WH --remote
```
This copies the <code>fetchai/echo:0.19.0</code> skill code containing the "behaviours", and "handlers" into the project, ready to run. The identifier of the skill <code>fetchai/echo:0.19.0</code> consists of the name of the author of the skill, followed by the skill name and its version.
</details>
Expand Down Expand Up @@ -319,7 +319,7 @@ First, get the needed packages directory from IPFS (execute from the working dir
```bash
mkdir packages
cd my_first_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Successfully added protocol 'open_aea/signing:1.0.0'.
Once we have an agent, we can add individual components to the agent as so;

```
aea add skill fetchai/echo:0.19.0:QmQxMpYwxRNCNzEqWaPmNXFTWgu4Xmz89ZjTp2TQu3wbPM --remote
aea add skill fetchai/echo:0.19.0:QmWGXT761veL8iK7ZroBRGExxAYKpHhvQcAvnLjwoqT1WH --remote
Registry path not provided and local registry `packages` not found in current (.) and parent directory.
Trying remote registry (`--remote`).
Adding skill 'fetchai/echo:latest'...
Expand Down
6 changes: 6 additions & 0 deletions docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Below we describe the additional manual steps required to upgrade between differ

# Open AEA

## `v1.11.0` to `v1.12.0`

No backwards incompatible changes.

Plugins from previous versions are not compatible anymore.

## `v1.10.0` to `v1.11.0`

No backwards incompatible changes.
Expand Down
2 changes: 1 addition & 1 deletion examples/tac_deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache go

# aea installation
RUN python -m pip install --upgrade pip
RUN pip install --upgrade --force-reinstall aea[all]==1.11.0
RUN pip install --upgrade --force-reinstall aea[all]==1.12.0

# directories and aea cli config
COPY /.aea /home/.aea
Expand Down
12 changes: 6 additions & 6 deletions packages/fetchai/agents/gym_aea/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ fingerprint:
README.md: QmNZkqQZByU5yn18ELka8TAyypiRxhHjAfMSdZfUy9mRwy
fingerprint_ignore_patterns: []
connections:
- fetchai/gym:0.19.0:QmQgtAmVUSvjbFXth3HMabP4o696qTh2fyzE9SxSSuibL3
- fetchai/gym:0.19.0:QmSAT5WRwyJTpZmu1qHRE6tiewP7yvevhyzF4WKXTYShrg
contracts: []
protocols:
- fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1
- fetchai/gym:1.0.0:QmSd1SpzSV1U1LyQJ7C5hrZT5c7rQXfJLez5fGBnveFLVx
- fetchai/state_update:1.0.0:QmZ9dxrmQTZCpA5VuamxBticK4CUZAfPsraTodksvmcqHx
- open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K
- fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw
- fetchai/gym:1.0.0:QmZGdryo15LuDSR83PUF94y7UMkEqzCTAV4JLJFsxycDr4
- fetchai/state_update:1.0.0:QmZFvwi42JTcu2PG44mdiH7AyEhj54vGpfDJ8cn6n4pLEi
- open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH
skills:
- fetchai/gym:0.20.0:QmTqPWwPXVPRH1Rg9xq4obCHnUpXAyTCoo8cBEcyz4YVfg
- fetchai/gym:0.20.0:QmYnGJzk9JfSDREa8FyLqQxDnGUKwjrpFQYSuV8aho3uCV
default_connection: fetchai/gym:0.19.0
default_ledger: fetchai
required_ledgers:
Expand Down
8 changes: 4 additions & 4 deletions packages/fetchai/agents/my_first_aea/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ connections:
- fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQFgc4z
contracts: []
protocols:
- fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1
- fetchai/state_update:1.0.0:QmZ9dxrmQTZCpA5VuamxBticK4CUZAfPsraTodksvmcqHx
- open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K
- fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw
- fetchai/state_update:1.0.0:QmZFvwi42JTcu2PG44mdiH7AyEhj54vGpfDJ8cn6n4pLEi
- open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH
skills:
- fetchai/echo:0.19.0:QmQxMpYwxRNCNzEqWaPmNXFTWgu4Xmz89ZjTp2TQu3wbPM
- fetchai/echo:0.19.0:QmWGXT761veL8iK7ZroBRGExxAYKpHhvQcAvnLjwoqT1WH
default_connection: fetchai/stub:0.21.0
default_ledger: fetchai
required_ledgers:
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/connections/gym/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fingerprint:
fingerprint_ignore_patterns: []
connections: []
protocols:
- fetchai/gym:1.0.0:QmSd1SpzSV1U1LyQJ7C5hrZT5c7rQXfJLez5fGBnveFLVx
- fetchai/gym:1.0.0:QmZGdryo15LuDSR83PUF94y7UMkEqzCTAV4JLJFsxycDr4
class_name: GymConnection
config:
env: ''
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/connections/http_client/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fingerprint:
fingerprint_ignore_patterns: []
connections: []
protocols:
- fetchai/http:1.0.0:QmVUoaxD2pMd2czgrUjFH6LifM8h9KUt4TzRRPjUHCCYyv
- fetchai/http:1.0.0:Qmdz2FD7P9VXzUMZpLUh3DV5YtgWZwJKDxxw78heeaHv4M
class_name: HTTPClientConnection
config:
host: 127.0.0.1
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/connections/http_server/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fingerprint:
fingerprint_ignore_patterns: []
connections: []
protocols:
- fetchai/http:1.0.0:QmVUoaxD2pMd2czgrUjFH6LifM8h9KUt4TzRRPjUHCCYyv
- fetchai/http:1.0.0:Qmdz2FD7P9VXzUMZpLUh3DV5YtgWZwJKDxxw78heeaHv4M
class_name: HTTPServerConnection
config:
api_spec_path: null
Expand Down
4 changes: 2 additions & 2 deletions packages/fetchai/connections/ledger/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ fingerprint:
fingerprint_ignore_patterns: []
connections: []
protocols:
- fetchai/contract_api:1.0.0:QmVR6sG5UNq47KAArHm2uMdhUYCPKdB4UUAHkAKvQD7X6i
- fetchai/ledger_api:1.0.0:QmbActCb7p5gY4R5G8yBvfaerhB1NLuDM8vUt6SB3AjRs7
- fetchai/contract_api:1.0.0:QmdJq6EqSouBuCwwpbYUppFSxSgRoKHiRvy1571AU85SuF
- fetchai/ledger_api:1.0.0:Qmdy72BMaubPyppiQMerrrnPxXA4XYxgxhADCbG6Mw1bNf
class_name: LedgerConnection
config:
ledger_apis:
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/connections/local/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fingerprint:
fingerprint_ignore_patterns: []
connections: []
protocols:
- fetchai/oef_search:1.0.0:QmPseJv8pzf9L62HDG1PW85xHvg7xqE4i2iKMfxcWh43HK
- fetchai/oef_search:1.0.0:QmbAQhRUkcQmBYY3yUcLUjzsNjUUB1iWALweg1vmzDoYym
class_name: OEFLocalConnection
config: {}
excluded_protocols: []
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/contract_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the contract_api protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.11.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.12.0`.
"""

from packages.fetchai.protocols.contract_api.message import ContractApiMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/contract_api/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmYJqcqfbCFE3LHMgok2xkP9z8myB9NNZsm6iR6NXh2HQF
__init__.py: QmYbXLmc14WW8rdYDWB92dWbqaVNYPKy4T1d6ACg1eaPxM
__init__.py: QmWZefrAQ4eXSybVkAAhP93TQpjfwYwajccxgeJg9ptMfZ
contract_api.proto: QmVezvQ3vgN19nzJD1CfgvjHxjdaP4yLUSwaQDMQq85vUZ
contract_api_pb2.py: QmXgS6swWgask1MH1B1rGWeF4YgPwcVnuZuAVPGwgNV7XH
custom_types.py: QmUyCSgCKMUkL1FJBjBjS6mCxAoniqDUT8T3nVNkkf87B7
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/default/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the default protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.11.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.12.0`.
"""

from packages.fetchai.protocols.default.message import DefaultMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/default/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmNN1eJSSeAGs4uny1tqWkeQwyr6SVV2QgKAoPz18W5jnV
__init__.py: QmYGSegNTNbyn6UWiiwmp9NWQmLw2diAW3BxSjMRn2qJPr
__init__.py: QmRLdL7cKHfFzT1551QM8kF3SKh7oothVfuBtaj5VdGP4B
custom_types.py: QmVbmxfpiHM8xDvsRvytPr4jmjD5Ktc5171fweYGBkXvBd
default.proto: QmWYzTSHVbz7FBS84iKFMhGSXPxay2mss29vY7ufz2BFJ8
default_pb2.py: QmPX9tm18ddM5Q928JLd1HmdUZKp2ssKhCJzhZ53FJmjxM
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/fipa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the fipa protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.11.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.12.0`.
"""

from packages.fetchai.protocols.fipa.message import FipaMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/fipa/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmfZxjMzApLKdff7s77G6RKqsmXLdc18yLoMLpDsoV2C8c
__init__.py: QmQrJLCgXFddQ5xt65LKWmprUVnHBdmEAhXBB3GQQm7SaF
__init__.py: QmQDHGkhfcLWN64KFNZr3gUed2x17bCBWT7KpF7TYPNAN9
custom_types.py: Qmf72KRbkNsxxAHwMtkmJc5TRL23fU7AuzJAdSTftckwJQ
dialogues.py: QmRvjJDEbGyhTh1cF6kSbzf45F7bEXFpWMnTw4Yf2TBymL
fipa.proto: QmS7aXZ2JoG3oyMHWiPYoP9RJ7iChsoTC9KQLsj6vi3ejR
Expand Down
Loading

0 comments on commit d72f99a

Please sign in to comment.