Skip to content

Commit

Permalink
release: 1.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Jan 9, 2025
1 parent 2454418 commit 8580b6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions 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
Expand Up @@ -12,13 +12,13 @@ edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/cargo-dist"
homepage = "https://opensource.axo.dev/cargo-dist/"
version = "0.28.0"
version = "1.0.0-rc.1"
rust-version = "1.74"

[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
dist-schema = { version = "=0.28.0", path = "cargo-dist-schema" }
axoproject = { version = "=0.28.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
dist-schema = { version = "=1.0.0-rc.1", path = "cargo-dist-schema" }
axoproject = { version = "=1.0.0-rc.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }

# first-party deps
axocli = { version = "0.2.0" }
Expand Down
4 changes: 2 additions & 2 deletions cargo-dist/tests/gallery/dist/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub fn snapshot_settings() -> insta::Settings {
pub fn snapshot_settings_with_version_filter() -> insta::Settings {
let mut settings = snapshot_settings();
settings.add_filter(
r"\d+\.\d+\.\d+(\-prerelease\d*)?(\.\d+)?",
r"\d+\.\d+\.\d+(\-prerelease\d*|\-rc\d*)?(\.\d+)?",
"1.0.0-FAKEVERSION",
);
settings
Expand All @@ -149,7 +149,7 @@ pub fn snapshot_settings_with_gallery_filter() -> insta::Settings {
r#""cargo_version_line": "CENSORED""#,
);
settings.add_filter(
r"cargo-dist/releases/download/v\d+\.\d+\.\d+(\-prerelease\d*)?(\.\d+)?/",
r"cargo-dist/releases/download/v\d+\.\d+\.\d+(\-prerelease\d*|\-rc\d*)?(\.\d+)?/",
"cargo-dist/releases/download/vSOME_VERSION/",
);
settings.add_filter(r#"sha256 ".*""#, r#"sha256 "CENSORED""#);
Expand Down

0 comments on commit 8580b6e

Please sign in to comment.