From e2c790d45be65878e6f04c6d53ea22be188abfa9 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Thu, 4 Jul 2024 08:36:14 +0900 Subject: [PATCH] release(aura): RC1 --- rust/Cargo.lock | 2 +- rust/aura-pm/Cargo.toml | 4 ++-- rust/aura-pm/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index d8c68d1bd..f164c37c4 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ [[package]] name = "aura-pm" -version = "4.0.0-beta04" +version = "4.0.0-rc1" dependencies = [ "alpm", "applying", diff --git a/rust/aura-pm/Cargo.toml b/rust/aura-pm/Cargo.toml index 0005f9e03..e0354d56e 100644 --- a/rust/aura-pm/Cargo.toml +++ b/rust/aura-pm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aura-pm" -version = "4.0.0-beta04" +version = "4.0.0-rc1" authors = ["Colin Woodbury "] edition = "2021" description = "Install and manage Arch Linux packages." @@ -14,7 +14,7 @@ name = "aura" path = "src/main.rs" [dependencies] -aura-core = { version = "0.6", path = "../aura-core" } +aura-core = { version = "0.7", path = "../aura-core" } r2d2-alpm = { version = "0.2", path = "../r2d2-alpm" } alpm = "3.0" diff --git a/rust/aura-pm/README.md b/rust/aura-pm/README.md index 375871bd6..840e3cf8d 100644 --- a/rust/aura-pm/README.md +++ b/rust/aura-pm/README.md @@ -6,9 +6,9 @@ Guide](https://fosskers.github.io/aura/). ## Installation -Since this crate is still in the Beta phase, you'll need to specify the version -yourself when installing it via `cargo`: +Since this crate is still only a Release Candidate, you'll need to specify the +version yourself when installing it via `cargo`: ``` -cargo install aura-pm --version 4.0.0-beta04 +cargo install aura-pm --version 4.0.0-rc1 ```