From 12de5c15f21945ad4b197e9bf3b857264c9d8b4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Sep 2023 19:08:35 +0100 Subject: [PATCH] chore: release (#32) Co-authored-by: release-plz --- crates/augurs-core/CHANGELOG.md | 17 +++++++++++++++++ crates/augurs-ets/CHANGELOG.md | 27 +++++++++++++++++++++++++++ crates/augurs-js/CHANGELOG.md | 18 ++++++++++++++++++ crates/augurs-mstl/CHANGELOG.md | 21 +++++++++++++++++++++ crates/augurs-testing/CHANGELOG.md | 16 ++++++++++++++++ crates/pyaugurs/CHANGELOG.md | 24 ++++++++++++++++++++++++ 6 files changed, 123 insertions(+) create mode 100644 crates/augurs-core/CHANGELOG.md create mode 100644 crates/augurs-ets/CHANGELOG.md create mode 100644 crates/augurs-js/CHANGELOG.md create mode 100644 crates/augurs-mstl/CHANGELOG.md create mode 100644 crates/augurs-testing/CHANGELOG.md create mode 100644 crates/pyaugurs/CHANGELOG.md diff --git a/crates/augurs-core/CHANGELOG.md b/crates/augurs-core/CHANGELOG.md new file mode 100644 index 00000000..66c63b8e --- /dev/null +++ b/crates/augurs-core/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/augurs-core-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Bump all versions to latest ([#26](https://github.com/grafana/augurs/pull/26)) +- Short circuit where horizon == 0 in predict methods +- Initial commit diff --git a/crates/augurs-ets/CHANGELOG.md b/crates/augurs-ets/CHANGELOG.md new file mode 100644 index 00000000..1d7ff878 --- /dev/null +++ b/crates/augurs-ets/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/augurs-ets-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Add some more comments and debug assertions +- Update some comments +- Bump all versions to latest ([#26](https://github.com/grafana/augurs/pull/26)) +- Update itertools requirement from 0.10.5 to 0.11.0 ([#25](https://github.com/grafana/augurs/pull/25)) +- Only bother calculating AMSE when it's required ([#24](https://github.com/grafana/augurs/pull/24)) +- Make slight changes to inner loop to avoid as much unsafe indexing ([#23](https://github.com/grafana/augurs/pull/23)) +- Add __repr__ for pyaugurs structs +- Add iai benchmarks for benchmarking in CI ([#9](https://github.com/grafana/augurs/pull/9)) +- Use workspace dependencies for some more shared dependencies +- Don't hardcode 95% CI ppf in NaiveTrend prediction intervals +- Modify compute_sigma_h to be more functional +- Short circuit where horizon == 0 in predict methods +- Initial commit diff --git a/crates/augurs-js/CHANGELOG.md b/crates/augurs-js/CHANGELOG.md new file mode 100644 index 00000000..0caba23e --- /dev/null +++ b/crates/augurs-js/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/augurs-js-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Bump all versions to latest ([#26](https://github.com/grafana/augurs/pull/26)) +- Add explicit getrandom dep with js feature in augurs-js +- Accept &[f64] in MSTL::fit, rather than owned Vec ([#17](https://github.com/grafana/augurs/pull/17)) +- Initial commit diff --git a/crates/augurs-mstl/CHANGELOG.md b/crates/augurs-mstl/CHANGELOG.md new file mode 100644 index 00000000..181e5ccd --- /dev/null +++ b/crates/augurs-mstl/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/augurs-mstl-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Update some comments +- Accept &[f64] in MSTL::fit, rather than owned Vec ([#17](https://github.com/grafana/augurs/pull/17)) +- Add iai benchmarks for benchmarking in CI ([#9](https://github.com/grafana/augurs/pull/9)) +- Use workspace dependencies for some more shared dependencies +- Don't hardcode 95% CI ppf in NaiveTrend prediction intervals +- Short circuit where horizon == 0 in predict methods +- Initial commit diff --git a/crates/augurs-testing/CHANGELOG.md b/crates/augurs-testing/CHANGELOG.md new file mode 100644 index 00000000..1417901a --- /dev/null +++ b/crates/augurs-testing/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/augurs-testing-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Bump all versions to latest ([#26](https://github.com/grafana/augurs/pull/26)) +- Initial commit diff --git a/crates/pyaugurs/CHANGELOG.md b/crates/pyaugurs/CHANGELOG.md new file mode 100644 index 00000000..05ba5599 --- /dev/null +++ b/crates/pyaugurs/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0-alpha.0](https://github.com/grafana/augurs/releases/tag/pyaugurs-v0.1.0-alpha.0) - 2023-09-08 + +### Other +- Add workspace metadata and use in all the subpackages ([#33](https://github.com/grafana/augurs/pull/33)) +- (cargo-release) version 0.1.0-alpha.1 +- Use -alpha.0 suffix in crate versions +- Bump all versions to latest ([#26](https://github.com/grafana/augurs/pull/26)) +- Add __repr__ for pyaugurs structs +- Accept &[f64] in MSTL::fit, rather than owned Vec ([#17](https://github.com/grafana/augurs/pull/17)) +- Bump pyo3 and numpy to 0.19.0 ([#16](https://github.com/grafana/augurs/pull/16)) +- Add type stubs to pyaugurs +- Update docstring on PyTrendModel +- Fix doc comment on pyaugurs Forecast +- Add numpy as dependency to pyaugurs +- Bump maturin build-system version to stable +- Initial commit