From a2325880af8f62ee2386a6dacd6e8aa82ea11f26 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 4 Oct 2025 10:59:25 +0100 Subject: [PATCH 1/4] Update changelog --- CHANGES.txt | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1c6b3ed16..79da3859d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,26 @@ - Chaco CHANGELOG =============== +Release 6.1.0 +------------- + +A minor release which updates numpy requirement to 2.x and minimum Python to 3.10 + +As usual, this release includes a small number of bugfixes and minor improvements. + +Thanks to all who contributed to the release: + +Enhancements + +* Update code to work with recent numpy 2.x (#917) +* Update minimum tested Python to 3.10 + +Build/CI + +* Update pypi testing workflow (#917) +* Update edm testing workflow (#917) +* skip known failures #919 and #918 (#917) + Release 6.0.0 ------------- From 50c13aa5e8a88d7ca5904343421fb7f69a6fb2d2 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 4 Oct 2025 11:02:09 +0100 Subject: [PATCH 2/4] Update version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1fc909309..f3b1fcafa 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ from Cython.Build import cythonize MAJOR = 6 -MINOR = 0 +MINOR = 1 MICRO = 0 PRERELEASE = "" IS_RELEASED = True From 75f745197f9206b1d1389c22f1a1386cfaf75399 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 4 Oct 2025 11:02:19 +0100 Subject: [PATCH 3/4] Update readme --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 166edc450..8d867a6a3 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ Features Prerequisites ------------- -Chaco is only supported on Python >= 3.6. +Chaco is only supported on Python >= 3.10. You must have the following libraries installed before building or installing Chaco: From c64dc6257fcb0436a49ce6c8b877863a17671d03 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 11 Oct 2025 12:00:22 +0100 Subject: [PATCH 4/4] Update changelog --- CHANGES.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 79da3859d..0ebf69917 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -15,12 +15,22 @@ Enhancements * Update code to work with recent numpy 2.x (#917) * Update minimum tested Python to 3.10 +Fixes + +* Fix typo in base_2d_plot.py (#915) + Build/CI * Update pypi testing workflow (#917) * Update edm testing workflow (#917) * skip known failures #919 and #918 (#917) +Thanks to all who contributed to the release: + +* Mark Asbach +* Ioannis Tziakos + + Release 6.0.0 -------------