Skip to content

Commit 09df520

Browse files
authored
Merge pull request #1684 from axodotdev/release_1_0_0_rc1
release: 1.0.0-rc.1
2 parents 2454418 + 8580b6e commit 09df520

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ edition = "2021"
1212
license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/axodotdev/cargo-dist"
1414
homepage = "https://opensource.axo.dev/cargo-dist/"
15-
version = "0.28.0"
15+
version = "1.0.0-rc.1"
1616
rust-version = "1.74"
1717

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

2323
# first-party deps
2424
axocli = { version = "0.2.0" }

cargo-dist/tests/gallery/dist/snapshot.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ pub fn snapshot_settings() -> insta::Settings {
132132
pub fn snapshot_settings_with_version_filter() -> insta::Settings {
133133
let mut settings = snapshot_settings();
134134
settings.add_filter(
135-
r"\d+\.\d+\.\d+(\-prerelease\d*)?(\.\d+)?",
135+
r"\d+\.\d+\.\d+(\-prerelease\d*|\-rc\d*)?(\.\d+)?",
136136
"1.0.0-FAKEVERSION",
137137
);
138138
settings
@@ -149,7 +149,7 @@ pub fn snapshot_settings_with_gallery_filter() -> insta::Settings {
149149
r#""cargo_version_line": "CENSORED""#,
150150
);
151151
settings.add_filter(
152-
r"cargo-dist/releases/download/v\d+\.\d+\.\d+(\-prerelease\d*)?(\.\d+)?/",
152+
r"cargo-dist/releases/download/v\d+\.\d+\.\d+(\-prerelease\d*|\-rc\d*)?(\.\d+)?/",
153153
"cargo-dist/releases/download/vSOME_VERSION/",
154154
);
155155
settings.add_filter(r#"sha256 ".*""#, r#"sha256 "CENSORED""#);

0 commit comments

Comments
 (0)