Skip to content

Commit a54ef18

Browse files
committed
chore: bump to v0.19.6
Signed-off-by: OjusWiZard <[email protected]>
1 parent a6702c4 commit a54ef18

File tree

11 files changed

+18
-9
lines changed

11 files changed

+18
-9
lines changed

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release History - `open-autonomy`
22

3+
# 0.19.6 (2025-03-19)
4+
5+
Autonomy:
6+
- Adds support for building multi-arch docker images #2314
7+
38
# 0.19.5 (2025-03-14)
49

510
Chores:

autonomy/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__title__ = "open-autonomy"
2323
__description__ = "A framework for the creation of autonomous agent services."
2424
__url__ = "https://github.com/valory-xyz/open-autonomy.git"
25-
__version__ = "0.19.5"
25+
__version__ = "0.19.6"
2626
__author__ = "Valory AG"
2727
__license__ = "Apache-2.0"
2828
__copyright__ = "2021-2024 Valory AG"

autonomy/cli/build_images.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2022-2024 Valory AG
4+
# Copyright 2022-2025 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

autonomy/cli/helpers/image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2023-2024 Valory AG
4+
# Copyright 2023-2025 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

autonomy/deploy/image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2022-2024 Valory AG
4+
# Copyright 2022-2025 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

deployments/Dockerfiles/autonomy-user/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
open-autonomy[all]==0.19.5
1+
open-autonomy[all]==0.19.6
22
open-aea[all]==1.65.0
33
open-aea-cli-ipfs==1.65.0
44
open-aea-ledger-ethereum==1.65.0

docs/upgrading.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Below, we describe the additional manual steps required to upgrade between diffe
55

66
# Open Autonomy
77

8+
## `v0.19.5` to `v0.19.6`
9+
10+
No backwards incompatible changes.
11+
812
## `v0.19.4` to `v0.19.5`
913

1014
No backwards incompatible changes.

plugins/aea-test-autonomy/aea_test_autonomy/configurations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_key(key_path: Path) -> str:
3737
HTTP_LOCALHOST = f"http://{LOCALHOST}"
3838

3939
DEFAULT_IMAGE_VERSION = "latest"
40-
MATCHING_FRAMEWORK_VERSION = "0.19.5"
40+
MATCHING_FRAMEWORK_VERSION = "0.19.6"
4141
TENDERMINT_IMAGE_VERSION = os.environ.get(
4242
"TENDERMINT_IMAGE_VERSION", MATCHING_FRAMEWORK_VERSION
4343
)

plugins/aea-test-autonomy/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
setup(
3434
name="open-aea-test-autonomy",
35-
version="0.19.5",
35+
version="0.19.6",
3636
author="Valory AG",
3737
license="Apache-2.0",
3838
description="Plugin containing test tools for open-autonomy packages.",

tests/test_autonomy/test_cli/test_build_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2022-2024 Valory AG
4+
# Copyright 2022-2025 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

tests/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_test_files(package_type: PackageType) -> List[Path]:
6262

6363
def test_version() -> None:
6464
"""Test the version."""
65-
assert autonomy.__version__ == "0.19.5"
65+
assert autonomy.__version__ == "0.19.6"
6666

6767

6868
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)