Skip to content

Commit e45062b

Browse files
authored
Merge pull request #760 from valory-xyz/release/v1.57.0
Release `v1.57.0`
2 parents 4cd5f40 + 6092102 commit e45062b

21 files changed

Lines changed: 37 additions & 25 deletions

File tree

HISTORY.md

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

3+
## 1.57.0 (2024-09-24)
4+
5+
AEA:
6+
- Adds support for custom components in `publish` and `eject` commands. #758
7+
8+
Plugins:
9+
- Improves the EIP1559 strategy #759
10+
311
## 1.56.0 (2024-09-17)
412

513
Plugins:

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The following table shows which versions of `open-aea` are currently being suppo
88

99
| Version | Supported |
1010
|------------| ------------------ |
11-
| `1.56.x` | :white_check_mark: |
12-
| `< 1.56.0` | :x: |
11+
| `1.57.x` | :white_check_mark: |
12+
| `< 1.57.0` | :x: |
1313

1414
## Reporting a Vulnerability
1515

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__ = "1.56.0"
26+
__version__ = "1.57.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]==1.56.0 "open-aea-cli-ipfs<2.0.0,>=1.56.0"
19+
RUN pip install --upgrade --force-reinstall open-aea[all]==1.57.0 "open-aea-cli-ipfs<2.0.0,>=1.57.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/v1.56.0/packages packages
14+
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.57.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:1.56.0
4+
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.57.0
55
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest
66

77
DOCKER_BUILD_CONTEXT_DIR=..

docs/upgrading.md

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

1010
### Upgrade guide
1111

12+
## `v1.56.0` to `v1.57.0`
13+
14+
- No backwards incompatible changes
15+
1216
## `v1.55.0` to `v1.56.0`
1317

1418
- The `priority_fee_estimation_trigger` has been removed from the `eip1559` configuration of the ledger.
@@ -61,7 +65,7 @@ This release contains updated version range for several dependencies so please u
6165

6266
## `v1.46.0` to `v1.47.0`
6367

64-
The `send_signed_transaction` method implementation is been updated to follow the ledger plugin pattern, which means it will return transaction digest not the transaction receipt. To retrieve the transaction receipt use `get_transaction_receipt` method.
68+
The `send_signed_transaction` method implementation has been updated to follow the ledger plugin pattern, which means it will return the transaction digest, not the transaction receipt. To retrieve the transaction receipt use the `get_transaction_receipt` method.
6569

6670
## `v1.45.0` to `v1.46.0`
6771

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]==1.56.0
22+
RUN pip install --upgrade --force-reinstall open-aea[all]==1.57.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
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="open-aea-cli-benchmark",
29-
version="1.56.0",
29+
version="1.57.0",
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="1.56.0",
31+
version="1.57.0",
3232
author="Valory AG",
3333
license="Apache-2.0",
3434
description="CLI extension for open AEA framework wrapping IPFS functionality.",

0 commit comments

Comments
 (0)