Skip to content

Commit

Permalink
Merge pull request #2271 from valory-xyz/release/v0.18.0
Browse files Browse the repository at this point in the history
Release `v0.18.0`
  • Loading branch information
Adamantios authored Oct 18, 2024
2 parents 3a07abf + 17d453b commit ea7a188
Show file tree
Hide file tree
Showing 55 changed files with 282 additions and 267 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History - `open-autonomy`

# 0.18.0 (2024-10-18)

Autonomy:
- Fixes the cleanup on scaffolding validation failure #2269
- Adds support for dictionary overrides #2270
- Bumps `[email protected]` #2271

# 0.17.0 (2024-10-17)

Autonomy:
Expand Down
10 changes: 5 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name = "pypi"
aiohttp = "<4.0.0,>=3.8.5"
docker = "==6.1.2"
Flask = "==2.0.2"
open-aea = {version = "==1.57.0", extras = ["all"]}
open-aea-ledger-ethereum = "==1.57.0"
open-aea-ledger-ethereum-hwi = "==1.57.0"
open-aea-cli-ipfs = "==1.57.0"
open-aea = {version = "==1.58.0", extras = ["all"]}
open-aea-ledger-ethereum = "==1.58.0"
open-aea-ledger-ethereum-hwi = "==1.58.0"
open-aea-cli-ipfs = "==1.58.0"
ipfshttpclient = "==0.8.0a2"
Werkzeug= "==2.0.3"
watchdog = ">=2.1.6"
Expand All @@ -32,7 +32,7 @@ typing_extensions = ">=3.10.0.2"
hexbytes = "*"
packaging = "*"
pytest-asyncio = "*"
open-aea-ledger-cosmos = "==1.57.0"
open-aea-ledger-cosmos = "==1.58.0"
# we pin this as the range specified in open-aea-ledger-cosmos is wide
open-aea-cosmpy = "==0.6.7"
grpcio = "==1.53.0"
Expand Down
2 changes: 1 addition & 1 deletion autonomy/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__title__ = "open-autonomy"
__description__ = "A framework for the creation of autonomous agent services."
__url__ = "https://github.com/valory-xyz/open-autonomy.git"
__version__ = "0.17.0"
__version__ = "0.18.0"
__author__ = "Valory AG"
__license__ = "Apache-2.0"
__copyright__ = "2021-2024 Valory AG"
2 changes: 1 addition & 1 deletion autonomy/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@
ACN_IMAGE_NAME = os.environ.get("ACN_IMAGE_NAME", "valory/open-acn-node")
DEFAULT_DOCKER_IMAGE_AUTHOR = "valory"
OAR_IMAGE = "{image_author}/oar-{agent}:{version}"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u"
8 changes: 4 additions & 4 deletions deployments/Dockerfiles/autonomy-user/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
open-autonomy[all]==0.17.0
open-aea[all]==1.57.0
open-aea-cli-ipfs==1.57.0
open-aea-ledger-ethereum==1.57.0
open-autonomy[all]==0.18.0
open-aea[all]==1.58.0
open-aea-cli-ipfs==1.58.0
open-aea-ledger-ethereum==1.58.0
protobuf>=4.21.6,<5.0.0
2 changes: 1 addition & 1 deletion docs/advanced_reference/commands/autonomy_build-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
* Include extra python packages:

```bash
autonomy build-image ... -e open-aea-ledger-flashbots==1.57.0
autonomy build-image ... -e open-aea-ledger-flashbots==1.58.0
```

This will tag the image as `<author>/oar-<agent_package>:<version>`.
4 changes: 2 additions & 2 deletions docs/counter_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ you have followed the [setup instructions](guides/quick_start.md#setup). As a re

2. Use the CLI to download the `valory/counter` service.
```bash
autonomy fetch valory/counter:0.1.0:bafybeifuo5t3rf2ffgxhl6hblukjpqikpte276ecq5d44umrqj2dk4qhga --remote --service
autonomy fetch valory/counter:0.1.0:bafybeigrnqiyciudmpvjfdiyv5eznaxg3cdltzuzuvlyc32dnsyodkogr4 --remote --service
cd counter
```

Expand Down Expand Up @@ -284,7 +284,7 @@ First, open a terminal to the root of this repository,
and fetch the `counter_client` agent:
```bash
autonomy fetch valory/counter_client:0.1.0:bafybeigtaripyr6ek73uibrvqdvx5p6gdfejwghjdkiqzal2cxv6bi4rk4 --remote
autonomy fetch valory/counter_client:0.1.0:bafybeiddupmnsup4skrpfia2oyowzclqkggqkh7uifazfsch4r6chyf7ci --remote
```
This will copy the agent project in the `counter_client` directory.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/define_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ If you have [populated the local registry](./overview_of_the_development_process
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==1.57.0
version: ==1.58.0
open-aea-test-autonomy:
version: ==0.12.1.post1
default_connection: null
Expand Down
10 changes: 5 additions & 5 deletions docs/guides/overview_of_the_development_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ To follow the next sections, you need to populate the local registry with a numb
"third_party": {
"service/valory/hello_world/0.1.0": "bafybeihl6j7ihkytk4t4ca2ffhctpzydwi6r4a354ubjasttuv2pw4oaci",
"agent/valory/hello_world/0.1.0": "bafybeihtmp45mbfs5tyzrgxfoimh552on6dif42ifqidifait3ej2m5zvq",
"connection/valory/abci/0.1.0": "bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq",
"connection/valory/abci/0.1.0": "bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli",
"connection/valory/http_client/0.23.0": "bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u",
"connection/valory/ipfs/0.1.0": "bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm",
"connection/valory/ipfs/0.1.0": "bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q",
"connection/valory/ledger/0.19.0": "bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e",
"contract/valory/service_registry/0.1.0": "bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m",
"contract/valory/service_registry/0.1.0": "bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia",
"protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi",
"protocol/valory/abci/0.1.0": "bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u",
"protocol/valory/acn/1.1.0": "bafybeidluaoeakae3exseupaea4i3yvvk5vivyt227xshjlffywwxzcxqe",
Expand All @@ -45,8 +45,8 @@ To follow the next sections, you need to populate the local registry with a numb
"protocol/valory/ipfs/0.1.0": "bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm",
"protocol/valory/ledger_api/1.0.0": "bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni",
"protocol/valory/tendermint/0.1.0": "bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra",
"skill/valory/abstract_abci/0.1.0": "bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq",
"skill/valory/abstract_round_abci/0.1.0": "bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm",
"skill/valory/abstract_abci/0.1.0": "bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy",
"skill/valory/abstract_round_abci/0.1.0": "bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u",
"skill/valory/hello_world_abci/0.1.0": "bafybeiebittgfcz4idj633fkrvu6qle2ajekdjxpp7slggyur7vv7s7hrq",
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e"
}
Expand Down
Loading

0 comments on commit ea7a188

Please sign in to comment.