Merge pull request #1684 from axodotdev/release_1_0_0_rc1

release: 1.0.0-rc.1
This commit is contained in:
Misty De Méo 2025-01-09 13:05:33 -08:00 committed by GitHub
commit 09df5200b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

6
Cargo.lock generated
View File

@ -183,7 +183,7 @@ dependencies = [
[[package]]
name = "axoproject"
version = "0.28.0"
version = "1.0.0-rc.1"
dependencies = [
"axoasset",
"axoprocess",
@ -777,7 +777,7 @@ dependencies = [
[[package]]
name = "dist"
version = "0.28.0"
version = "1.0.0-rc.1"
dependencies = [
"axoasset",
"axocli",
@ -828,7 +828,7 @@ dependencies = [
[[package]]
name = "dist-schema"
version = "0.28.0"
version = "1.0.0-rc.1"
dependencies = [
"camino",
"gazenot",

View File

@ -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" }

View File

@ -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
@ -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""#);