Skip to content

Commit 57af718

Browse files
authored
Merge pull request #852 from valory-xyz/release/2.1.0
Prepare `v2.1.0` release
2 parents d3e5209 + 52330a9 commit 57af718

File tree

19 files changed

+24
-24
lines changed

19 files changed

+24
-24
lines changed

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History - open AEA
22

3-
## 2.1.0 (upcoming)
3+
## 2.1.0 (2026-03-06)
44

55
AEA:
66
- Extends Python support from `3.10-3.11` to `3.10-3.14`. #831

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.1.0rc6"
26+
__version__ = "2.1.0"
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.1.0rc6 "open-aea-cli-ipfs<3.0.0,>=2.1.0rc6"
19+
RUN pip install --upgrade --force-reinstall open-aea[all]==2.1.0 "open-aea-cli-ipfs<3.0.0,>=2.1.0"
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.1.0rc6/packages packages
14+
svn checkout https://github.com/valory-xyz/open-aea/tags/v2.1.0/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.1.0rc6
4+
DOCKER_IMAGE_TAG=valory/open-aea-develop:2.1.0
55
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest
66

77
DOCKER_BUILD_CONTEXT_DIR=..

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.1.0rc6
22+
RUN pip install --upgrade --force-reinstall open-aea[all]==2.1.0
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
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="open-aea-cli-benchmark",
28-
version="2.1.0rc6",
28+
version="2.1.0",
2929
author="Valory AG",
3030
license="Apache-2.0",
3131
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
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="open-aea-cli-ipfs",
29-
version="2.1.0rc6",
29+
version="2.1.0",
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
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
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="open-aea-ledger-cosmos",
28-
version="2.1.0rc6",
28+
version="2.1.0",
2929
author="Valory AG",
3030
license="Apache-2.0",
3131
description="Python package wrapping the public and private key cryptography and ledger api of Cosmos.",

plugins/aea-ledger-ethereum-flashbots/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name="open-aea-ledger-ethereum-flashbots",
27-
version="2.1.0rc6",
27+
version="2.1.0",
2828
author="Valory AG",
2929
license="Apache-2.0",
3030
description="Python package extending the default open-aea ethereum ledger plugin to add support for flashbots.",
@@ -40,8 +40,8 @@
4040
},
4141
python_requires=">=3.10,<4.0",
4242
install_requires=[
43-
"open-aea-ledger-ethereum~=2.1.0rc6",
44-
"open-aea-flashbots~=2.1.0rc6",
43+
"open-aea-ledger-ethereum~=2.1.0",
44+
"open-aea-flashbots~=2.1.0",
4545
],
4646
tests_require=["pytest"],
4747
entry_points={

0 commit comments

Comments
 (0)