Skip to content

Commit 1201cb8

Browse files
committed
release: 1.0.4
1 parent 33ebd9a commit 1201cb8

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/base.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,4 @@ jobs:
127127
uses: softprops/action-gh-release@v2
128128
with:
129129
files: "${{ steps.bin-path.outputs.HUBER_BIN_PATH }},${{ steps.bin-path.outputs.HUBER_BIN_SHA256SUM_PATH }}"
130-
draft: true
131-
132-
130+
generate_release_notes: true

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- { target: x86_64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true }
2020
- { target: aarch64-unknown-linux-gnu, os: ubuntu-24.04, use-cross: true, use-just: true }
2121
- { target: aarch64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true }
22-
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-20.04, use-cross: true, use-just: true }
23-
- { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04, use-cross: true, use-just: true }
22+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-24.04, use-cross: true, use-just: true }
23+
- { target: arm-unknown-linux-musleabihf, os: ubuntu-24.04, use-cross: true, use-just: true }
2424
- { target: x86_64-apple-darwin, os: macos-13, use-cross: false, use-just: true }
2525
- { target: aarch64-apple-darwin, os: macos-14, use-cross: false, use-just: true }
2626
- { target: x86_64-pc-windows-gnu, os: windows-2022, use-cross: false, use-just: false }

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- { target: x86_64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true }
2323
- { target: aarch64-unknown-linux-gnu, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true }
2424
- { target: aarch64-unknown-linux-musl, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true }
25-
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-20.04, use-cross: true, use-just: true, continue-on-error-test: true }
26-
- { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04, use-cross: true, use-just: true, continue-on-error-test: true }
25+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true }
26+
- { target: arm-unknown-linux-musleabihf, os: ubuntu-24.04, use-cross: true, use-just: true, continue-on-error-test: true }
2727
- { target: x86_64-apple-darwin, os: macos-13, use-cross: false, use-just: true, continue-on-error-test: true }
2828
- { target: aarch64-apple-darwin, os: macos-14, use-cross: false, use-just: true, continue-on-error-test: true }
2929
- { target: x86_64-pc-windows-gnu, os: windows-2022, use-cross: false, use-just: false, continue-on-error-test: true }

Cargo.lock

+4-4
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
@@ -11,7 +11,7 @@ lto = true
1111
codegen-units = 1
1212

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

2525
[workspace.dependencies]
26-
huber-common = { path = "huber-common", version = "1.0.3" }
27-
huber-procmacro = { path = "huber-procmacro", version = "1.0.3" }
26+
huber-common = { path = "huber-common", version = "1.0.4" }
27+
huber-procmacro = { path = "huber-procmacro", version = "1.0.4" }
2828
libcli-rs = "0.1.4"
2929
clap = { version = "4.5.21", features = ["env", "derive"] }
3030
log = "0.4"

huber/tests/repo.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ use std::env;
22
use std::path::Path;
33

44
use scopeguard::defer;
5-
use sequential_test::sequential;
65

76
use crate::common::reset_huber;
87

98
#[macro_use]
109
mod common;
1110

1211
#[test]
13-
#[sequential]
12+
// #[sequential]
1413
fn test_repo_add_show_remove() {
1514
defer! {
1615
reset_huber();
@@ -33,10 +32,13 @@ fn test_repo_add_show_remove() {
3332
.arg(huber_config.to_string_lossy().to_string())
3433
.assert()
3534
.success());
36-
assert_contain_line_regex!(assert.get_output().stderr, "Repo added");
35+
assert_contain_line_regex!(assert.get_output().stderr, &format!("Repo {} added", repo));
3736

3837
huber_cmd!(arg("repo").arg("show").assert().success());
3938

4039
let assert = huber_cmd!(arg("repo").arg("remove").arg(repo).assert().success());
41-
assert_contain_line_regex!(assert.get_output().stderr, "Repo removed");
40+
assert_contain_line_regex!(
41+
assert.get_output().stderr,
42+
&format!("Repo {} removed", repo)
43+
);
4244
}

0 commit comments

Comments
 (0)