Skip to content

chore: update cargo toml for release v2.4.1 #1407

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

Merged
merged 1 commit into from
Aug 16, 2025
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parseable"
version = "2.4.0"
version = "2.4.1"
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Version bump to 2.4.1 — LGTM

Looks consistent with the PR objective. No functional concerns on this line.

If this is a workspace or there are other manifests, quickly verify no stale 2.4.0 references remain:


🏁 Script executed:

#!/bin/bash
set -euo pipefail
# Find any lingering references to v2.4.0 in manifests or docs
rg -n --hidden -S 'v2\.4\.0|version\s*=\s*"2\.4\.0"'

Length of output: 187


Stale 2.4.0 references found – please update to 2.4.1

The version bump in Cargo.toml is correct, but there are still outdated references in other manifests:

  • index.yaml (line 36):
    change appVersion: v2.4.0appVersion: v2.4.1
  • helm/Chart.yaml (line 6):
    change appVersion: "v2.4.0"appVersion: "v2.4.1"
  • helm/values.yaml (line 4):
    change tag: "v2.4.0"tag: "v2.4.1"

Suggested diff:

 index.yaml | 1 line
-    appVersion: v2.4.0
+    appVersion: v2.4.1

 helm/Chart.yaml | 1 line
-appVersion: "v2.4.0"
+appVersion: "v2.4.1"

 helm/values.yaml | 1 line
-    tag: "v2.4.0"
+    tag: "v2.4.1"

Once these are updated, the version bump will be fully consistent across the repo.

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In Cargo.toml around line 3, version has been bumped to 2.4.1 but other
manifests still reference 2.4.0; update index.yaml (line 36) changing
appVersion: v2.4.0 → appVersion: v2.4.1, update helm/Chart.yaml (line 6)
changing appVersion: "v2.4.0" → appVersion: "v2.4.1", and update
helm/values.yaml (line 4) changing tag: "v2.4.0" → tag: "v2.4.1" so all version
references are consistent.

authors = ["Parseable Team <[email protected]>"]
edition = "2024"
rust-version = "1.88.0"
Expand Down Expand Up @@ -157,8 +157,8 @@ arrow = "54.0.0"
temp-dir = "0.1.14"

[package.metadata.parseable_ui]
assets-url = "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.4.0/build.zip"
assets-sha1 = "04632472a2174328cfea7a91a175f6f3795d7152"
assets-url = "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.4.1/build.zip"
assets-sha1 = "19eec4d38b978270eca1026325350e38c235ac31"

[features]
debug = []
Expand Down
Loading