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.6.2 #154

Closed
wants to merge 1 commit into from
Closed
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
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.6.1"
version = "0.6.2"
edition = "2021"
keywords = [
"analysis",
Expand All @@ -29,16 +29,16 @@ keywords = [

[workspace.dependencies]
augurs = { path = "crates/augurs" }
augurs-changepoint = { version = "0.6.1", path = "crates/augurs-changepoint" }
augurs-clustering = { version = "0.6.1", path = "crates/augurs-clustering" }
augurs-core = { version = "0.6.1", path = "crates/augurs-core" }
augurs-dtw = { version = "0.6.1", path = "crates/augurs-dtw" }
augurs-ets = { version = "0.6.1", path = "crates/augurs-ets" }
augurs-forecaster = { version = "0.6.1", path = "crates/augurs-forecaster" }
augurs-mstl = { version = "0.6.1", path = "crates/augurs-mstl" }
augurs-outlier = { version = "0.6.1", path = "crates/augurs-outlier" }
augurs-prophet = { version = "0.6.1", path = "crates/augurs-prophet" }
augurs-seasons = { version = "0.6.1", path = "crates/augurs-seasons" }
augurs-changepoint = { version = "0.6.2", path = "crates/augurs-changepoint" }
augurs-clustering = { version = "0.6.2", path = "crates/augurs-clustering" }
augurs-core = { version = "0.6.2", path = "crates/augurs-core" }
augurs-dtw = { version = "0.6.2", path = "crates/augurs-dtw" }
augurs-ets = { version = "0.6.2", path = "crates/augurs-ets" }
augurs-forecaster = { version = "0.6.2", path = "crates/augurs-forecaster" }
augurs-mstl = { version = "0.6.2", path = "crates/augurs-mstl" }
augurs-outlier = { version = "0.6.2", path = "crates/augurs-outlier" }
augurs-prophet = { version = "0.6.2", path = "crates/augurs-prophet" }
augurs-seasons = { version = "0.6.2", path = "crates/augurs-seasons" }
Comment on lines +32 to +41
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Note: augurs-testing dependency is missing version specification

The verification revealed that while most augurs-* dependencies are correctly updated to version 0.6.2, the augurs-testing crate is specified with only a path and no version:

augurs-testing = { path = "crates/augurs-testing" }

For consistency with other workspace dependencies, it should also include the version "0.6.2".

🔗 Analysis chain

LGTM: Dependency versions are consistently updated.

All augurs-* dependencies have been correctly updated to version 0.6.2, maintaining consistency across the workspace.

Let's verify that no dependencies were missed in this update:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for any augurs-* dependencies that might still reference version 0.6.1

# Test: Search for any remaining 0.6.1 versions in Cargo.toml files
# Expect: No matches as all should be updated to 0.6.2
echo "Checking for any remaining 0.6.1 versions..."
rg '"0.6.1"' -g 'Cargo.toml'

# Test: Verify all augurs-* crates in workspace are included in dependencies
# Expect: All workspace crates should have corresponding dependency entries
echo "Checking for any missing augurs-* crates..."
fd '^augurs-.*' crates -t d -x echo "Checking if {} is in dependencies..." \; -x rg "{}" Cargo.toml

Length of output: 1693

augurs-testing = { path = "crates/augurs-testing" }

augurs-core-js = { path = "js/augurs-core-js" }
Expand Down
6 changes: 6 additions & 0 deletions crates/augurs-prophet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2](https://github.com/grafana/augurs/compare/augurs-prophet-v0.6.1...augurs-prophet-v0.6.2) - 2024-11-09

### Fixed

- use OUT_DIR instead of CARGO_MANIFEST_DIR

## [0.6.1](https://github.com/grafana/augurs/compare/augurs-prophet-v0.6.0...augurs-prophet-v0.6.1) - 2024-11-09

### Fixed
Expand Down
Loading