-
Notifications
You must be signed in to change notification settings - Fork 7
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 #116
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [0.4.0](https://github.com/grafana/augurs/compare/augurs-seasons-v0.3.1...augurs-seasons-v0.4.0) - 2024-09-25 | ||
|
||
### Added | ||
|
||
- add 'augurs' convenience crate, re-exporting other crates ([#117](https://github.com/grafana/augurs/pull/117)) | ||
Comment on lines
+9
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Expand the changelog entry to include all relevant changes. While the addition of the 'augurs' convenience crate is correctly documented, the changelog entry for version 0.4.0 doesn't reflect all the changes mentioned in the PR objectives. Consider expanding this entry to include:
This will provide a more comprehensive overview of the changes in this release. Here's a suggested expansion of the changelog entry: ## [0.4.0](https://github.com/grafana/augurs/compare/augurs-seasons-v0.3.1...augurs-seasons-v0.4.0) - 2024-09-25
### Added
- add 'augurs' convenience crate, re-exporting other crates ([#117](https://github.com/grafana/augurs/pull/117))
- new augurs-dtw crate for dynamic time warping
- new augurs-clustering crate implementing the DBSCAN algorithm
### Changed
- API-compatible changes in augurs-core, augurs-mstl, and augurs-forecaster packages
### Breaking Changes
- augurs-ets: removed or renamed public modules and constants
- augurs-outlier: removed or renamed a public struct and its fields
### Fixed
- Various fixes to address warnings and improve functionality across packages
### Updated
- Upgraded the following packages from version 0.3.1 to 0.4.0:
- augurs
- augurs-changepoint
- augurs-core
- augurs-testing
- augurs-clustering
- augurs-dtw
- augurs-ets
- augurs-mstl
- augurs-forecaster
- augurs-outlier
- augurs-seasons |
||
|
||
## [0.3.1](https://github.com/grafana/augurs/compare/augurs-seasons-v0.3.0...augurs-seasons-v0.3.1) - 2024-07-30 | ||
|
||
No notable changes in this release. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 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.4.0](https://github.com/grafana/augurs/compare/augurs-v0.3.1...augurs-v0.4.0) - 2024-09-25 | ||
|
||
### Added | ||
|
||
- add 'augurs' convenience crate, re-exporting other crates ([#117](https://github.com/grafana/augurs/pull/117)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enhance the changelog entry with more specific details.
The new release entry for version 0.4.0 is a good start, but it could be improved to provide more comprehensive information about the changes in this package. Consider the following suggestions:
Add a "Breaking Changes" section to reflect the breaking changes mentioned in the PR objectives for the
augurs-ets
package. This should include details about removed or renamed public modules and constants.Include more specific information about changes to the
augurs-ets
package. The current entry only mentions a general addition of the 'augurs' convenience crate, which may not be directly related to this package.If there are no specific changes to
augurs-ets
other than the version bump, consider adding a note to that effect for clarity.Here's a suggested structure for the improved entry:
This structure will provide users with a clearer understanding of the changes and potential impacts on their projects.