Skip to content

Commit

Permalink
chore: release v0.9.0 (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k authored Jan 14, 2025
1 parent 575cffc commit 1769039
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 11 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# 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]

## `augurs-changepoint` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-changepoint-v0.8.1...augurs-changepoint-v0.9.0) - 2025-01-14

No changes in this release.

## `augurs-clustering` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-clustering-v0.8.1...augurs-clustering-v0.9.0) - 2025-01-14

### Changed
- *(clustering)* [**breaking**] use new DbscanCluster type instead of isize ([#233](https://github.com/grafana/augurs/pull/233))

This changes the return type of `DbscanClusterer::fit` from `Vec<isize>` to `Vec<DbscanCluster>`, which is a more self-explanatory type.
The ID of the first cluster is now `1` (instead of `0`), and the IDs of the subsequent clusters are incremented by `1`.

## `augurs-core` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-core-v0.8.1...augurs-core-v0.9.0) - 2025-01-14

### Added
- exposed `FloatIterExt` with helper methods for calculating summary statistics on iterators over floats ([#227](https://github.com/grafana/augurs/pull/227))

## `augurs-dtw` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-dtw-v0.8.1...augurs-dtw-v0.9.0) - 2025-01-14

No changes in this release.

## `augurs-ets` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-ets-v0.8.1...augurs-ets-v0.9.0) - 2025-01-14

No changes in this release.

## `augurs-forecaster` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-forecaster-v0.8.1...augurs-forecaster-v0.9.0) - 2025-01-14

### Added
- allow ignoring NaNs in power transforms ([#234](https://github.com/grafana/augurs/pull/234))
- add NaN handling to MinMaxScaler and StandardScaler ([#227](https://github.com/grafana/augurs/pull/227))

## `augurs-mstl` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-mstl-v0.8.1...augurs-mstl-v0.9.0) - 2025-01-14

No changes in this release.

## `augurs-outlier` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-outlier-v0.8.1...augurs-outlier-v0.9.0) - 2025-01-14

No changes in this release.

## `augurs-prophet` - [0.9.0](https://github.com/grafana/augurs/compare/augurs-prophet-v0.8.1...augurs-prophet-v0.9.0) - 2025-01-14

No changes in this release.
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ authors = [
]
documentation = "https://docs.rs/crate/augurs"
repository = "https://github.com/grafana/augurs"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
keywords = [
"analysis",
Expand All @@ -29,16 +29,16 @@ keywords = [

[workspace.dependencies]
augurs = { path = "crates/augurs" }
augurs-changepoint = { version = "0.8.1", path = "crates/augurs-changepoint" }
augurs-clustering = { version = "0.8.1", path = "crates/augurs-clustering" }
augurs-core = { version = "0.8.1", path = "crates/augurs-core" }
augurs-dtw = { version = "0.8.1", path = "crates/augurs-dtw" }
augurs-ets = { version = "0.8.1", path = "crates/augurs-ets" }
augurs-forecaster = { version = "0.8.1", path = "crates/augurs-forecaster" }
augurs-mstl = { version = "0.8.1", path = "crates/augurs-mstl" }
augurs-outlier = { version = "0.8.1", path = "crates/augurs-outlier" }
augurs-prophet = { version = "0.8.1", path = "crates/augurs-prophet" }
augurs-seasons = { version = "0.8.1", path = "crates/augurs-seasons" }
augurs-changepoint = { version = "0.9.0", path = "crates/augurs-changepoint" }
augurs-clustering = { version = "0.9.0", path = "crates/augurs-clustering" }
augurs-core = { version = "0.9.0", path = "crates/augurs-core" }
augurs-dtw = { version = "0.9.0", path = "crates/augurs-dtw" }
augurs-ets = { version = "0.9.0", path = "crates/augurs-ets" }
augurs-forecaster = { version = "0.9.0", path = "crates/augurs-forecaster" }
augurs-mstl = { version = "0.9.0", path = "crates/augurs-mstl" }
augurs-outlier = { version = "0.9.0", path = "crates/augurs-outlier" }
augurs-prophet = { version = "0.9.0", path = "crates/augurs-prophet" }
augurs-seasons = { version = "0.9.0", path = "crates/augurs-seasons" }
augurs-testing = { path = "crates/augurs-testing" }

augurs-core-js = { path = "js/augurs-core-js" }
Expand Down

0 comments on commit 1769039

Please sign in to comment.