Skip to content

Commit

Permalink
Merge pull request #2297 from valory-xyz/release/v0.19.0
Browse files Browse the repository at this point in the history
Release `v0.19.0`
  • Loading branch information
Adamantios authored Jan 30, 2025
2 parents 005353b + 4af8d46 commit 21cb9ac
Show file tree
Hide file tree
Showing 55 changed files with 383 additions and 380 deletions.
5 changes: 4 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History - `open-autonomy`

# 0.19.0 (TBD)
# 0.19.0 (2025-01-30)

Docs:
- Performs general improvements #2291
Expand All @@ -9,6 +9,9 @@ Docs:
Packages:
- Fails early when rounds' attributes are missing #2294

Chores:
- Bumps `[email protected]` #2297

# 0.18.4 (2025-01-08)

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.60.0", extras = ["all"]}
open-aea-ledger-ethereum = "==1.60.0"
open-aea-ledger-ethereum-hwi = "==1.60.0"
open-aea-cli-ipfs = "==1.60.0"
open-aea = {version = "==1.62.0", extras = ["all"]}
open-aea-ledger-ethereum = "==1.62.0"
open-aea-ledger-ethereum-hwi = "==1.62.0"
open-aea-cli-ipfs = "==1.62.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.60.0"
open-aea-ledger-cosmos = "==1.62.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.18.4"
__version__ = "0.19.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,5 +65,5 @@
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:bafybeiachppt4lnvu6nfwlmzhqzmnal6jgobanimz6jkcs4b2god5vtf2u"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeig4wczuh3l6wbxb47rgsmodlfupichj66gfcwkvy65q5pbm3utykm"
OLAS_DOCS_URL = "https://docs.autonolas.network"
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.18.4
open-aea[all]==1.60.0
open-aea-cli-ipfs==1.60.0
open-aea-ledger-ethereum==1.60.0
open-autonomy[all]==0.19.0
open-aea[all]==1.62.0
open-aea-cli-ipfs==1.62.0
open-aea-ledger-ethereum==1.62.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.60.0
autonomy build-image ... -e open-aea-ledger-flashbots==1.62.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:bafybeibddcuehbtaexwqomxnxizg6z3xtreoiu4cldxf7yf7zulbuiqoua --remote --service
autonomy fetch valory/counter:0.1.0:bafybeiafzdncnmjohym6udmo6bz26chp4cy5eo5xx4emgbof4fj5miryqu --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:bafybeicqpppldjxlw4ixs2opsfagdv5led6uamwdr53fsz25wqmuy4jewm --remote
autonomy fetch valory/counter_client:0.1.0:bafybeicxkreehn7qr67dcy3lt35r2fxqk2is6fwwmx55jjsdwdgmgbto44 --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.60.0
version: ==1.62.0
open-aea-test-autonomy:
version: ==0.12.1.post1
default_connection: null
Expand Down
26 changes: 13 additions & 13 deletions docs/guides/overview_of_the_development_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ 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": "bafybeib5wliqsotle6onwaz63umadnu7lyjeyr2lz6xau2kcq6eirfnh7m",
"connection/valory/http_client/0.23.0": "bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u",
"connection/valory/ipfs/0.1.0": "bafybeibpcwc673evkpliwp35hmjwjx7obramg2chxityubevnhss3f5cfa",
"connection/valory/ledger/0.19.0": "bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e",
"contract/valory/service_registry/0.1.0": "bafybeicnzbchbtgjg3mntstqg3x2vvct232gfqltafuchi6ujgdzvuakji",
"protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi",
"connection/valory/abci/0.1.0": "bafybeidiwux3jrlkaemob55ojxgvpzrmyzyq5dld6phzb6bandgrquc7zu",
"connection/valory/http_client/0.23.0": "bafybeid5ffvg76ejjoese7brj5ji3lx66cu7p2ixfwflpo6rgofkypfd7y",
"connection/valory/ipfs/0.1.0": "bafybeid5fdr6ufha3axnktfofsc2hxha3jatnoi7st3pccorf7sztfpaky",
"connection/valory/ledger/0.19.0": "bafybeibiayfscw4badpr545f47hsvc2r5lgfpgzib5q4h4u6kkosdsytby",
"contract/valory/service_registry/0.1.0": "bafybeid4kiq2fwospfod4buof2fwwz3gk36jiyqkfjyg2xx346ad5zt72y",
"protocol/open_aea/signing/1.0.0": "bafybeig2d36zxy65vd7fwhs7scotuktydcarm74aprmrb5nioiymr3yixm",
"protocol/valory/abci/0.1.0": "bafybeiatodhboj6a3p35x4f4b342lzk6ckxpud23awnqbxwjeon3k5y36u",
"protocol/valory/acn/1.1.0": "bafybeidluaoeakae3exseupaea4i3yvvk5vivyt227xshjlffywwxzcxqe",
"protocol/valory/contract_api/1.0.0": "bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i",
"protocol/valory/http/1.0.0": "bafybeifugzl63kfdmwrxwphrnrhj7bn6iruxieme3a4ntzejf6kmtuwmae",
"protocol/valory/acn/1.1.0": "bafybeic6h55ov5lrzbah6fate54c4u6spopcexxspw3abotbmffabfddeu",
"protocol/valory/contract_api/1.0.0": "bafybeid247uig2ekykdumh7ewhp2cdq7rchaeqjj6e7urx35zfpdl5zrn4",
"protocol/valory/http/1.0.0": "bafybeih4azmfwtamdbkhztkm4xitep3gx6tfdnoz6tvllmaqnhu3klejfa",
"protocol/valory/ipfs/0.1.0": "bafybeifi2nri7sprmkez4rqzwb4lnu6peoy3bax5k6asf6k5ms7kmjpmkq",
"protocol/valory/ledger_api/1.0.0": "bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni",
"protocol/valory/ledger_api/1.0.0": "bafybeihmqzcbj6t7vxz2aehd5726ofnzsfjs5cwlf42ro4tn6i34cbfrc4",
"protocol/valory/tendermint/0.1.0": "bafybeigydrbfrlmr4f7shbtqx44kvmbg22im27mxdap2e3m5tkti6t445y",
"skill/valory/abstract_abci/0.1.0": "bafybeigygqg63cr4sboxz7xfakcfpz55id7ihmj434v5iz3r26t7q6qwie",
"skill/valory/abstract_round_abci/0.1.0": "bafybeiachppt4lnvu6nfwlmzhqzmnal6jgobanimz6jkcs4b2god5vtf2u",
"skill/valory/abstract_abci/0.1.0": "bafybeifuzjuq5af36e5gg2fpnxxf7xoqq5oqhqk76sgi3uewtcxkpyn2m4",
"skill/valory/abstract_round_abci/0.1.0": "bafybeig4wczuh3l6wbxb47rgsmodlfupichj66gfcwkvy65q5pbm3utykm",
"skill/valory/hello_world_abci/0.1.0": "bafybeiebittgfcz4idj633fkrvu6qle2ajekdjxpp7slggyur7vv7s7hrq",
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeihs5zlwa5wlozct3rjlxsirm3ve3e4buse5nfehiky6ymnnfrobne"
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeic6ayusdwy4dks75njwk32ac7ur7salgllwf4fdc34ue5z2k5iz4q"
}
}
```
Expand Down
Loading

0 comments on commit 21cb9ac

Please sign in to comment.