Skip to content

Commit 96dff4d

Browse files
authored
Merge pull request #794 from valory-xyz/release/v1.65.0
Release `v1.65.0`
2 parents 802525d + ab84b31 commit 96dff4d

22 files changed

Lines changed: 45 additions & 23 deletions

File tree

.spelling

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,3 +388,5 @@ solana
388388
1.48.0.post1
389389
macOS
390390
tasks.py
391+
EIP-1559
392+
RPCs

HISTORY.md

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

3+
## 1.65.0 (2025-03-13)
4+
5+
Packages:
6+
- Refines the default EIP-1559 values in the ledger connection's configuration #788 && #791
7+
8+
Plugins:
9+
- Uses the minimum tip as a fallback #789
10+
- Makes the timeout of RPC requests configurable #792
11+
12+
Docs:
13+
- Fixes broken submodule and Macro syntax error #787
14+
15+
Tests:
16+
- Creates a test for the EIP-1559 fee calculation #791
17+
- Makes the public RPCs overridable via environment variables #793
18+
319
## 1.64.0 (2025-02-12)
420

521
Plugins:

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

77
DOCKER_BUILD_CONTEXT_DIR=..

docs/upgrading.md

Lines changed: 4 additions & 0 deletions
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.64.0` to `v1.65.0`
13+
14+
- No backwards incompatible changes
15+
1216
## `v1.63.0` to `v1.64.0`
1317

1418
- No backwards incompatible changes

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.64.0
22+
RUN pip install --upgrade --force-reinstall open-aea[all]==1.65.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.64.0",
29+
version="1.65.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.64.0",
31+
version="1.65.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)