Skip to content

Commit 225c2b6

Browse files
TonyBagnallMatthewMiddlehurstchrisholder
authored
[MNT] Release V1.0.0 (#2406)
* v1.0.0 changes * fix changelog gen * base release notes * release notes * changelog * space --------- Co-authored-by: MatthewMiddlehurst <[email protected]> Co-authored-by: chrisholder <[email protected]>
1 parent 3164fdf commit 225c2b6

17 files changed

+568
-26
lines changed

.github/utilities/changelog_generator.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def fetch_merged_pull_requests(page: int = 1) -> list[dict]:
2828
"base": "main",
2929
"state": "closed",
3030
"page": page,
31-
"per_page": 50,
31+
"per_page": 100,
3232
"sort": "updated",
3333
"direction": "desc",
3434
}
@@ -65,13 +65,9 @@ def fetch_pull_requests_since_last_release() -> list[dict]:
6565
all_pulls = []
6666
while not is_exhausted:
6767
pulls = fetch_merged_pull_requests(page=page)
68-
all_pulls.extend(
69-
[p for p in pulls if parser.parse(p["merged_at"]) > published_at]
70-
)
71-
is_exhausted = (
72-
any(parser.parse(p["merged_at"]) < published_at for p in pulls)
73-
or len(pulls) == 0
74-
)
68+
is_exhausted = len(pulls) == 0
69+
pulls = [p for p in pulls if parser.parse(p["merged_at"]) > published_at]
70+
all_pulls.extend(pulls)
7571
page += 1
7672
return all_pulls
7773

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We strive to provide a broad library of time series algorithms including the
1313
latest advances, offer efficient implementations using numba, and interfaces with other
1414
time series packages to provide a single framework for algorithm comparison.
1515

16-
The latest `aeon` release is `v0.11.1`. You can view the full changelog
16+
The latest `aeon` release is `v1.0.0`. You can view the full changelog
1717
[here](https://www.aeon-toolkit.org/en/stable/changelog.html).
1818

1919
Our webpage and documentation is available at https://aeon-toolkit.org.

aeon/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""aeon toolkit."""
22

3-
__version__ = "0.11.1"
3+
__version__ = "1.0.0"

docs/changelog.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ To stay up to date with aeon releases, subscribe to aeon
99
[here](https://libraries.io/pypi/aeon) or follow us on
1010
[Twitter](https://twitter.com/aeon_toolbox).
1111

12-
- [Version 0.11.1](changelogs/v0.11.md)
13-
- [Version 0.11.0](changelogs/v0.11.md)
14-
- [Version 0.10.0](changelogs/v0.10.md)
15-
- [Version 0.9.0](changelogs/v0.9.md)
16-
- [Version 0.8.1](changelogs/v0.8.md)
17-
- [Version 0.8.0](changelogs/v0.8.md)
18-
- [Version 0.7.1](changelogs/v0.7.md)
19-
- [Version 0.7.0](changelogs/v0.7.md)
20-
- [Version 0.6.0](changelogs/v0.6.md)
21-
- [Version 0.5.0](changelogs/v0.5.md)
22-
- [Version 0.4.0](changelogs/v0.4.md)
23-
- [Version 0.3.0](changelogs/v0.3.md)
24-
- [Version 0.2.0](changelogs/v0.2.md)
25-
- [Version 0.1.0](changelogs/v0.1.md)
12+
- [Version 1.0.0](changelogs/v1.0.md)
13+
- [Version 0.11.1](changelogs/v0/v0.11.md)
14+
- [Version 0.11.0](changelogs/v0/v0.11.md)
15+
- [Version 0.10.0](changelogs/v0/v0.10.md)
16+
- [Version 0.9.0](changelogs/v0/v0.9.md)
17+
- [Version 0.8.1](changelogs/v0/v0.8.md)
18+
- [Version 0.8.0](changelogs/v0/v0.8.md)
19+
- [Version 0.7.1](changelogs/v0/v0.7.md)
20+
- [Version 0.7.0](changelogs/v0/v0.7.md)
21+
- [Version 0.6.0](changelogs/v0/v0.6.md)
22+
- [Version 0.5.0](changelogs/v0/v0.5.md)
23+
- [Version 0.4.0](changelogs/v0/v0.4.md)
24+
- [Version 0.3.0](changelogs/v0/v0.3.md)
25+
- [Version 0.2.0](changelogs/v0/v0.2.md)
26+
- [Version 0.1.0](changelogs/v0/v0.1.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/changelogs/v0.6.md renamed to docs/changelogs/v0/v0.6.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ December 2023
44

55
## Highlights
66

7-
- A [deprecation policy](../developer_guide/deprecation.md) is now in place for `aeon` and its subpackages.
7+
- A [deprecation policy](../../developer_guide/deprecation.md) is now in place for `aeon` and its subpackages.
88
- New `classification` algorithms are available in `RED CoMETS` and `LITETime`.
99
- A `clustering` subpackage for deep learning clustering has been added.
1010
- A new experimental `similarity search` subpackage has been added, and the `annotation` module has been split into `segmentation` and `anomaly detection`.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)