Skip to content

Commit a8add4a

Browse files
authored
Merge pull request #811 from valory-xyz/chore/bump
Chore: Release `v2.0.2`
2 parents be47716 + 7a754ec commit a8add4a

20 files changed

Lines changed: 37 additions & 22 deletions

File tree

HISTORY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release History - open AEA
22

3+
## 2.0.2 (2025-08-05)
4+
5+
AEA, Plugins, Packages:
6+
- Bumps the version of `web3py` to `>=7.0.0,<8.0.0` # 810
7+
- Bumps the version of `eth-account` to `>=0.13.0,<0.14.0` # 810
8+
- Bumps the version of `hexbytes` to `==1.3.1` # 810
9+
310
## 2.0.1 (2025-07-25)
411

512
AEA:

aea/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__title__ = "open-aea"
2424
__description__ = "Open Autonomous Economic Agent framework (without vendor lock-in)"
2525
__url__ = "https://github.com/valory-xyz/open-aea.git"
26-
__version__ = "2.0.1"
26+
__version__ = "2.0.2"
2727
__author__ = "Valory AG"
2828
__license__ = "Apache-2.0"
2929
__copyright__ = "2021 Valory AG, 2019 Fetch.AI Limited"

deploy-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apk add --no-cache go
1616

1717
# aea installation
1818
RUN pip install --upgrade pip
19-
RUN pip install --upgrade --force-reinstall open-aea[all]==2.0.1 "open-aea-cli-ipfs<3.0.0,>=2.0.1"
19+
RUN pip install --upgrade --force-reinstall open-aea[all]==2.0.2 "open-aea-cli-ipfs<3.0.0,>=2.0.2"
2020

2121
# directories and aea cli config
2222
WORKDIR /home/agents

deploy-image/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The example uses the `fetchai/my_first_aea` project. You will likely want to mod
1111
Install subversion, then download the example directory to your local working directory
1212

1313
``` bash
14-
svn checkout https://github.com/valory-xyz/open-aea/tags/v2.0.1/packages packages
14+
svn checkout https://github.com/valory-xyz/open-aea/tags/v2.0.2/packages packages
1515
```
1616

1717
### Modify scripts

develop-image/docker-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Swap the following lines if you want to work with 'latest'
4-
DOCKER_IMAGE_TAG=valory/open-aea-develop:2.0.1
4+
DOCKER_IMAGE_TAG=valory/open-aea-develop:2.0.2
55
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest
66

77
DOCKER_BUILD_CONTEXT_DIR=..

docs/upgrading.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@ Below we describe the additional manual steps required to upgrade between differ
99

1010
### Upgrade guide
1111

12-
## `v1.65.0` to `v0.2.0`
12+
## `v2.0.1` to `v2.0.2`
13+
14+
- No backwards incompatible changes
15+
16+
## `v2.0.0` to `v2.0.1`
17+
18+
- No backwards incompatible changes
19+
20+
## `v1.65.0` to `v2.0.0`
1321

1422
- No longer supports Python 3.8 and 3.9.
1523
- `get_metavar` now requires a new parameter, `ctx: Context`

examples/tac_deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apk add --no-cache go
1919

2020
# aea installation
2121
RUN python -m pip install --upgrade pip
22-
RUN pip install --upgrade --force-reinstall open-aea[all]==2.0.1
22+
RUN pip install --upgrade --force-reinstall open-aea[all]==2.0.2
2323

2424
# directories and aea cli config
2525
COPY /.aea /home/.aea

plugins/aea-cli-benchmark/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="open-aea-cli-benchmark",
29-
version="2.0.1",
29+
version="2.0.2",
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
description="CLI extension for AEA framework benchmarking.",

plugins/aea-cli-ipfs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name="open-aea-cli-ipfs",
31-
version="2.0.1",
31+
version="2.0.2",
3232
author="Valory AG",
3333
license="Apache-2.0",
3434
description="CLI extension for open AEA framework wrapping IPFS functionality.",

plugins/aea-ledger-cosmos/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="open-aea-ledger-cosmos",
29-
version="2.0.1",
29+
version="2.0.2",
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
description="Python package wrapping the public and private key cryptography and ledger api of Cosmos.",

0 commit comments

Comments
 (0)