Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNT] Release V1.0.0 #2406

Merged
merged 7 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/utilities/changelog_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def fetch_merged_pull_requests(page: int = 1) -> list[dict]:
"base": "main",
"state": "closed",
"page": page,
"per_page": 50,
"per_page": 100,
"sort": "updated",
"direction": "desc",
}
Expand Down Expand Up @@ -65,13 +65,9 @@ def fetch_pull_requests_since_last_release() -> list[dict]:
all_pulls = []
while not is_exhausted:
pulls = fetch_merged_pull_requests(page=page)
all_pulls.extend(
[p for p in pulls if parser.parse(p["merged_at"]) > published_at]
)
is_exhausted = (
any(parser.parse(p["merged_at"]) < published_at for p in pulls)
or len(pulls) == 0
)
is_exhausted = len(pulls) == 0
pulls = [p for p in pulls if parser.parse(p["merged_at"]) > published_at]
all_pulls.extend(pulls)
page += 1
return all_pulls

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ We strive to provide a broad library of time series algorithms including the
latest advances, offer efficient implementations using numba, and interfaces with other
time series packages to provide a single framework for algorithm comparison.

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

Our webpage and documentation is available at https://aeon-toolkit.org.
Expand Down
2 changes: 1 addition & 1 deletion aeon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""aeon toolkit."""

__version__ = "0.11.1"
__version__ = "1.0.0"
29 changes: 15 additions & 14 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ To stay up to date with aeon releases, subscribe to aeon
[here](https://libraries.io/pypi/aeon) or follow us on
[Twitter](https://twitter.com/aeon_toolbox).

- [Version 0.11.1](changelogs/v0.11.md)
- [Version 0.11.0](changelogs/v0.11.md)
- [Version 0.10.0](changelogs/v0.10.md)
- [Version 0.9.0](changelogs/v0.9.md)
- [Version 0.8.1](changelogs/v0.8.md)
- [Version 0.8.0](changelogs/v0.8.md)
- [Version 0.7.1](changelogs/v0.7.md)
- [Version 0.7.0](changelogs/v0.7.md)
- [Version 0.6.0](changelogs/v0.6.md)
- [Version 0.5.0](changelogs/v0.5.md)
- [Version 0.4.0](changelogs/v0.4.md)
- [Version 0.3.0](changelogs/v0.3.md)
- [Version 0.2.0](changelogs/v0.2.md)
- [Version 0.1.0](changelogs/v0.1.md)
- [Version 1.0.0](changelogs/v1.0.md)
- [Version 0.11.1](changelogs/v0/v0.11.md)
- [Version 0.11.0](changelogs/v0/v0.11.md)
- [Version 0.10.0](changelogs/v0/v0.10.md)
- [Version 0.9.0](changelogs/v0/v0.9.md)
- [Version 0.8.1](changelogs/v0/v0.8.md)
- [Version 0.8.0](changelogs/v0/v0.8.md)
- [Version 0.7.1](changelogs/v0/v0.7.md)
- [Version 0.7.0](changelogs/v0/v0.7.md)
- [Version 0.6.0](changelogs/v0/v0.6.md)
- [Version 0.5.0](changelogs/v0/v0.5.md)
- [Version 0.4.0](changelogs/v0/v0.4.md)
- [Version 0.3.0](changelogs/v0/v0.3.md)
- [Version 0.2.0](changelogs/v0/v0.2.md)
- [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.
2 changes: 1 addition & 1 deletion docs/changelogs/v0.6.md → docs/changelogs/v0/v0.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ December 2023

## Highlights

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