From 24e354a7514d74878c550e25457d323e6251ee4b Mon Sep 17 00:00:00 2001 From: Chawye Hsu Date: Sat, 22 Jul 2023 12:16:39 +0800 Subject: [PATCH] feat: move to v0.1.0-alpha.2 Signed-off-by: Chawye Hsu --- .github/workflows/cicd.yml | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- crates/libscoop/Cargo.toml | 2 +- crates/libscoop/README.md | 2 +- crates/scoop_hash/Cargo.toml | 3 ++- crates/scoop_hash/README.md | 2 +- 7 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b008a72..87fcdb3 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -35,7 +35,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} release-type: rust - release-as: 0.1.0-alpha.1 + release-as: 0.1.0-alpha.2 outputs: release_created: ${{ steps.release.outputs.release_created }} tag_name: ${{ steps.release.outputs.tag_name }} diff --git a/Cargo.lock b/Cargo.lock index 9408b43..211ecbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -679,7 +679,7 @@ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "hok" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "anyhow", "clap 4.3.11", @@ -820,7 +820,7 @@ dependencies = [ [[package]] name = "libscoop" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "chrono", "dirs", @@ -1312,7 +1312,7 @@ dependencies = [ [[package]] name = "scoop-hash" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "criterion", "md-5", diff --git a/Cargo.toml b/Cargo.toml index 5bc41f8..0e448cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "hok" description = "Hok is a CLI implementation of Scoop in Rust" homepage = "https://github.com/chawyehsu/hok" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Chawye Hsu "] license = "Apache-2.0" edition = "2021" @@ -29,7 +29,7 @@ env_logger = "0.8.3" indicatif = "0.17.0" regex = "1.5.3" remove_dir_all = "0.7.0" -libscoop = { version = "0.1.0-alpha.1", path = "./crates/libscoop" } +libscoop = { version = "0.1.0-alpha.2", path = "./crates/libscoop" } sysinfo = "0.29" diff --git a/crates/libscoop/Cargo.toml b/crates/libscoop/Cargo.toml index 92cd981..24c2117 100644 --- a/crates/libscoop/Cargo.toml +++ b/crates/libscoop/Cargo.toml @@ -2,7 +2,7 @@ name = "libscoop" description = "Rust library implementation of Scoop" homepage = "https://github.com/chawyehsu/hok" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Chawye Hsu "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/crates/libscoop/README.md b/crates/libscoop/README.md index 9c04b79..bdc628a 100644 --- a/crates/libscoop/README.md +++ b/crates/libscoop/README.md @@ -16,7 +16,7 @@ This crate provides manipulation of [Scoop](https://scoop.sh/) from Rust. ```toml [dependencies] -libscoop = "0.1.0-alpha.1" +libscoop = "0.1" ``` ## License diff --git a/crates/scoop_hash/Cargo.toml b/crates/scoop_hash/Cargo.toml index 725793e..f812c57 100644 --- a/crates/scoop_hash/Cargo.toml +++ b/crates/scoop_hash/Cargo.toml @@ -2,10 +2,11 @@ name = "scoop-hash" description = "Hashing library for libscoop" homepage = "https://github.com/chawyehsu/hok" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Chawye Hsu "] license = "MIT OR Apache-2.0" edition = "2021" +readme = "README.md" [[bench]] name = "md5" diff --git a/crates/scoop_hash/README.md b/crates/scoop_hash/README.md index 643472c..5d0aa07 100644 --- a/crates/scoop_hash/README.md +++ b/crates/scoop_hash/README.md @@ -18,7 +18,7 @@ in the future when it is ready. ```toml [dependencies] -scoop-hash = "0.1.0-alpha.1" +scoop-hash = "0.1" ``` ## Bench