Skip to content

Commit

Permalink
Merge pull request #2092 from valory-xyz/bump/open-aea-1-41-0-post1
Browse files Browse the repository at this point in the history
Release `v0.13.1.post1`
  • Loading branch information
angrybayblade authored Oct 24, 2023
2 parents be8792f + 87be670 commit 9f411b1
Show file tree
Hide file tree
Showing 53 changed files with 261 additions and 251 deletions.
1 change: 1 addition & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -424,4 +424,5 @@ chiado
0.12.1.post2
0.12.1.post3
0.12.1.post4
0.13.1.post1
i
7 changes: 6 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Release History - `open-autonomy`


# 0.13.0 (2023-09-27)
# 0.13.1.post1 (2023-10-24)

Chore:
- Bumps `[email protected]`

# 0.13.1 (2023-10-11)

Autonomy:
- Updates the on-chain tools to use service manager token contract for managing services on gnosis
Expand Down
12 changes: 6 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name = "pypi"
aiohttp = "<3.8,>=3.7.4"
docker = "==6.1.2"
Flask = "==2.0.2"
open-aea = {version = "==1.41.0", extras = ["all"]}
open-aea-ledger-ethereum = "==1.41.0"
open-aea-ledger-ethereum-hwi = "==1.41.0"
open-aea-cli-ipfs = "==1.41.0"
open-aea = {version = "==1.41.0.post1", extras = ["all"]}
open-aea-ledger-ethereum = "==1.41.0.post1"
open-aea-ledger-ethereum-hwi = "==1.41.0.post1"
open-aea-cli-ipfs = "==1.41.0.post1"
ipfshttpclient = "==0.8.0a2"
Werkzeug= "==2.0.3"
watchdog = ">=2.1.6"
Expand All @@ -32,9 +32,9 @@ typing_extensions = ">=3.10.0.2"
hexbytes = "*"
packaging = "*"
pytest-asyncio = "*"
open-aea-ledger-cosmos = "==1.41.0"
open-aea-ledger-cosmos = "==1.41.0.post1"
# we pin this as the range specified in open-aea-ledger-cosmos is wide
open-aea-cosmpy = "==0.6.6"
open-aea-cosmpy = "==0.6.7"
grpcio = "==1.53.0"
hypothesis = "==6.21.6"
# latest supported for Python 3.7
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.13.1"
__version__ = "0.13.1.post1"
__author__ = "Valory AG"
__license__ = "Apache-2.0"
__copyright__ = "2021-2022 Valory AG"
2 changes: 1 addition & 1 deletion autonomy/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,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:bafybeid7neqpxxe4ualp23gxgrtpf6r5u3myr2mmc4uvwameyqshfdoydq"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeia3mdn5d7obk2gskzqtmc3yhhdq5q6ynlimaoep54royjvfzwr3pa"
2 changes: 1 addition & 1 deletion autonomy/data/Dockerfiles/dev/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requests = {version = "==2.27.1"}

[dev-packages]
asn1crypto = {version = "==1.4.0"}
open-aea-cosmpy = {version = "==0.6.6"}
open-aea-cosmpy = {version = "==0.6.7"}
open-aea = {editable = true, extras=["all"], path = "/open-aea"}
open-aea-cli-ipfs = {editable = true, path = "/open-aea/plugins/aea-cli-ipfs"}
open-aea-ledger-cosmos = {editable = true, path = "/open-aea/plugins/aea-ledger-cosmos"}
Expand Down
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.13.1
open-aea[all]==1.41.0
open-aea-cli-ipfs==1.41.0
open-aea-ledger-ethereum==1.41.0
open-autonomy[all]==0.13.1.post1
open-aea[all]==1.41.0.post1
open-aea-cli-ipfs==1.41.0.post1
open-aea-ledger-ethereum==1.41.0.post1
protobuf>=4.21.6,<5.0.0
4 changes: 2 additions & 2 deletions docs/advanced_reference/commands/autonomy_build-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
: Pull the latest dependencies when building the image.

`-f, --dockerfile FILE`
: Specify custom dockerfile for building the agent
: Specify custom `Dockerfile` for building the agent

`--help`
: Show the help message and exit.
Expand Down Expand Up @@ -95,7 +95,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
* Include extra python packages:

```bash
autonomy build-image ... -e open-aea-ledger-flashbots==1.41.0
autonomy build-image ... -e open-aea-ledger-flashbots==1.41.0.post1
```

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:bafybeidqrv7bzpjo4ul74dqaxxsirovh55p3dri2ymv2h7xeg24js2ikuu --remote --service
autonomy fetch valory/counter:0.1.0:bafybeic5ma5h4xy3th55nn3hgozpfgpl5dbvvj6jgikc7mmj7cguriyw3a --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:bafybeiead32n7qcy5rpyg4bvxaicpyuscdfvpe5hbzxygztuqgxms2vkha --remote
autonomy fetch valory/counter_client:0.1.0:bafybeie2jyzccqmfzuugjbovwsm44guxxmptppf7evjqijenosnyyu5efa --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](./set_up.md#populate-the-local-regist
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==1.41.0
version: ==1.41.0.post1
open-aea-test-autonomy:
version: ==0.12.1.post1
default_connection: null
Expand Down
12 changes: 6 additions & 6 deletions docs/guides/set_up.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ If you plan to follow the guides in the next sections, you need to populate the
"third_party": {
"service/valory/hello_world/0.1.0": "bafybeicdcrhpekqbwzeam2fi7npnl6qfwejgo73ftwoy4tofwbrsl5ene4",
"agent/valory/hello_world/0.1.0": "bafybeiakoj6jpj5gqyjk5qz2ibgvplgd4azqwxmi56aei7xpu5z47np3e4",
"connection/valory/abci/0.1.0": "bafybeibtnfu6skrpducj2fzjzw7lrwj3et63xx6u5dryrabec26utzxsf4",
"connection/valory/abci/0.1.0": "bafybeifyqjvfplmqcuyem6br4ea7s5ewphmyiupnlxgh44uuhfsc3fctbm",
"connection/valory/http_client/0.23.0": "bafybeifgeqgryx6b3s6eseyzyezygmeitcpt3tkor2eiycozoi6clgdrny",
"connection/valory/ipfs/0.1.0": "bafybeigkn27u7m5atju6a724clycyfshbgcbwheztil2bky7krfa46ub2a",
"connection/valory/ledger/0.19.0": "bafybeigo5vst3zlltkouenwxuzn6c47yr2fbbml6dl2o32rfnsezmalgnu",
"contract/valory/service_registry/0.1.0": "bafybeiebuuhs7fmigfh4c5dvzt6rbm5ekwrcnz7zouyjey7yyyqmpa6dyu",
"connection/valory/ipfs/0.1.0": "bafybeigfmqvlzbp67fttccpl4hsu3zaztbxv6vd7ikzra2hfppfkalgpji",
"connection/valory/ledger/0.19.0": "bafybeigdckv3e6bz6kfloz4ucqrsufft6k4jp6bwkbbcvh4fxvgbmzq3dm",
"contract/valory/service_registry/0.1.0": "bafybeieg4lqdkz3cjot4snvmxfu65piceouc3o3rtiivgsql6zyvr6jc7i",
"protocol/open_aea/signing/1.0.0": "bafybeie7xyems76v5b4wc2lmaidcujizpxfzjnnwdeokmhje53g7ym25ii",
"protocol/valory/abci/0.1.0": "bafybeihmzlmmb4pdo3zkhg6ehuyaa4lhw7bfpclln2o2z7v3o6fcep26iu",
"protocol/valory/acn/1.1.0": "bafybeic2pxzfc3voxl2ejhcqyf2ehm4wm5gxvgx7bliloiqi2uppmq6weu",
Expand All @@ -121,8 +121,8 @@ If you plan to follow the guides in the next sections, you need to populate the
"protocol/valory/ipfs/0.1.0": "bafybeiedxeismnx3k5ty4mvvhlqideixlhqmi5mtcki4lxqfa7uqh7p33u",
"protocol/valory/ledger_api/1.0.0": "bafybeige5agrztgzfevyglf7mb4o7pzfttmq4f6zi765y4g2zvftbyowru",
"protocol/valory/tendermint/0.1.0": "bafybeig6g6twajlwssfbfp5rlnu5mwzuu5kgak5cs4fich7rlkx6whesnu",
"skill/valory/abstract_abci/0.1.0": "bafybeihgemn2gwjc2wyxuh7rttg5pk5gec7dxhet3ih2tmg75vsdbgad7a",
"skill/valory/abstract_round_abci/0.1.0": "bafybeid7neqpxxe4ualp23gxgrtpf6r5u3myr2mmc4uvwameyqshfdoydq",
"skill/valory/abstract_abci/0.1.0": "bafybeihzk354juuf2r77qugl3hj5wuir3zhx6zeppgwrryj2fcjazmgohe",
"skill/valory/abstract_round_abci/0.1.0": "bafybeia3mdn5d7obk2gskzqtmc3yhhdq5q6ynlimaoep54royjvfzwr3pa",
"skill/valory/hello_world_abci/0.1.0": "bafybeibu3fdkjmawysvbwcn77pzpfw2d4the4ok7jod3jmdiqn4rzms37e",
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeihge56dn3xep2dzomu7rtvbgo4uc2qqh7ljl3fubqdi2lq44gs5lq"
}
Expand Down
Loading

0 comments on commit 9f411b1

Please sign in to comment.