Skip to content

Commit 780db2c

Browse files
committed
release: 1.0.7
1 parent 76d7a75 commit 780db2c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/release.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
job:
22-
- { target: x86_64-unknown-linux-gnu, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true, run_tests: true }
22+
- { target: x86_64-unknown-linux-gnu, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: false, run_tests: true }
2323
- { target: x86_64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true, run_tests: false }
2424
- { target: aarch64-unknown-linux-gnu, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true, run_tests: false }
2525
- { target: aarch64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true, run_tests: false }
@@ -46,3 +46,4 @@ jobs:
4646
uses: katyo/publish-crates@v2
4747
with:
4848
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
49+
dry-run: true

Cargo.lock

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

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ lto = true
1111
codegen-units = 1
1212

1313
[workspace.package]
14-
version = "1.0.6"
14+
version = "1.0.7"
1515
description = "Huber, simplify GitHub package management"
1616
authors = ["David Ko <[email protected]>"]
1717
edition = "2021"
@@ -23,8 +23,7 @@ readme = "README.md"
2323
license-file = "LICENSE"
2424

2525
[workspace.dependencies]
26-
#huber-common = { path = "huber-common", version = "1.0.6" }
27-
huber-procmacro = { path = "huber-procmacro", version = "1.0.6" }
26+
huber-procmacro = { path = "huber-procmacro", version = "1.0.7" }
2827
libcli-rs = "0.1.4"
2928
clap = { version = "4.5.21", features = ["env", "derive"] }
3029
log = "0.4"

huber-generator/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build = "src/build.rs"
1414

1515
[build-dependencies]
1616
anyhow.workspace = true
17-
huber = { path = "../huber", version = "1.0.6" }
17+
huber = { path = "../huber", version = "1.0.7" }
1818
maplit.workspace = true
1919
octocrab.workspace = true
2020
serde.workspace = true
@@ -23,6 +23,6 @@ tokio.workspace = true
2323

2424
[dependencies]
2525
anyhow.workspace = true
26-
huber = { path = "../huber", version = "1.0.6" }
26+
huber = { path = "../huber", version = "1.0.7" }
2727
maplit.workspace = true
2828
octocrab.workspace = true

huber/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ mod gh;
66
pub mod log;
77
pub mod model;
88
mod os;
9-
mod parse;
9+
pub mod parse;
1010
mod semver;
1111
pub mod service;

0 commit comments

Comments
 (0)