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

chore: release v0.4.0 #128

Merged
merged 1 commit into from
Oct 16, 2024
Merged

chore: release v0.4.0 #128

merged 1 commit into from
Oct 16, 2024

Conversation

sd2k
Copy link
Collaborator

@sd2k sd2k commented Oct 16, 2024

πŸ€– New release

  • augurs: 0.3.1 -> 0.4.0
  • augurs-changepoint: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)
  • augurs-core: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)
  • augurs-testing: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)
  • augurs-clustering: 0.3.1 -> 0.4.0
  • augurs-dtw: 0.3.1 -> 0.4.0
  • augurs-ets: 0.3.1 -> 0.4.0 (⚠️ API breaking changes)
  • augurs-mstl: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)
  • augurs-forecaster: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)
  • augurs-outlier: 0.3.1 -> 0.4.0 (⚠️ API breaking changes)
  • augurs-prophet: 0.3.1 -> 0.4.0
  • augurs-seasons: 0.3.1 -> 0.4.0 (βœ“ API compatible changes)

⚠️ augurs-ets breaking changes

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/module_missing.ron

Failed in:
  mod augurs_ets::data, previously in file /tmp/.tmpseDzBw/augurs-ets/src/data.rs:1

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  AIR_PASSENGERS in file /tmp/.tmpseDzBw/augurs-ets/src/data.rs:7
  AUSTRES in file /tmp/.tmpseDzBw/augurs-ets/src/data.rs:22

⚠️ augurs-outlier breaking changes

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/struct_missing.ron

Failed in:
  struct augurs_outlier::DBSCANDetector, previously in file /tmp/.tmpseDzBw/augurs-outlier/src/dbscan.rs:46

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field indices of struct OutlierIntervals, previously in file /tmp/.tmpseDzBw/augurs-outlier/src/lib.rs:129
Changelog

augurs

0.4.0 - 2024-10-16

Added

  • add cmdstan-based optimizer for augurs-prophet (#121)
  • add 'augurs' convenience crate, re-exporting other crates (#117)

Other

  • Add Prophet algorithm in augurs-prophet crate (#118)

augurs-changepoint

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)

augurs-core

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)
  • add 'Forecast::chain' method to chain two forecasts together (#115)
  • add augurs-dtw crate with dynamic time warping implementation (#98)

Fixed

  • [breaking] add serde derives for more types (#112)

augurs-testing

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)

augurs-clustering

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)
  • add augurs-clustering crate with DBSCAN algorithm (#100)

Other

  • Add augurs-clustering crate

augurs-dtw

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)
  • derive Clone for Dtw (#114)
  • parallel DTW calculations in augurs-js (#111)
  • add augurs-dtw crate with dynamic time warping implementation (#98)

Other

  • Add augurs-dtw crate

augurs-ets

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)

Other

  • Add Prophet algorithm in augurs-prophet crate (#118)

augurs-mstl

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)
  • add augurs-dtw crate with dynamic time warping implementation (#98)

augurs-forecaster

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)

Fixed

  • fix invalid lifetime warning on nightly (#113)

augurs-outlier

0.4.0 - 2024-10-16

Added

  • add cmdstan-based optimizer for augurs-prophet (#121)
  • add 'augurs' convenience crate, re-exporting other crates (#117)

Fixed

  • [breaking] add serde derives for more types (#112)
  • [breaking] make cluster_band optional, undefined if no cluster is found (#105)

Other

  • Add Prophet algorithm in augurs-prophet crate (#118)

augurs-prophet

0.4.0 - 2024-10-16

Added

  • add Prophet functionality to augurs-js (#125)
  • capture stdout/stderr from cmdstan and emit tracing events (#124)
  • add cmdstan-based optimizer for augurs-prophet (#121)

Other

  • Add test for parsing output of cmdstan
  • Fix up build/.gitignore in augurs-prophet
  • Improve augurs-prophet readme slightly
  • Add Prophet algorithm in augurs-prophet crate (#118)

augurs-seasons

0.4.0 - 2024-10-16

Added

  • add 'augurs' convenience crate, re-exporting other crates (#117)

Other

  • Add Prophet algorithm in augurs-prophet crate (#118)


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2024-10-16T07-43-15Z branch from 1f9280f to 475db08 Compare October 16, 2024 07:46
@github-actions github-actions bot force-pushed the release-plz-2024-10-16T07-43-15Z branch from 475db08 to fe98f5f Compare October 16, 2024 07:50
@sd2k sd2k closed this Oct 16, 2024
@sd2k sd2k reopened this Oct 16, 2024
@sd2k sd2k merged commit eb54d12 into main Oct 16, 2024
21 checks passed
@sd2k sd2k deleted the release-plz-2024-10-16T07-43-15Z branch October 16, 2024 08:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant