From cdebca1f48254ebb8286d8e38591bf644282866f Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Sun, 15 Sep 2024 07:53:32 +0900 Subject: [PATCH] release(aura): 4.0.7 --- CHANGELOG.md | 14 ++++++++++++++ rust/Cargo.lock | 2 +- rust/aura-pm/Cargo.toml | 6 +++--- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21aae7383..301c0713e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Aura Changelog +## 4.0.7 (2024-09-15) + +Pacman 7 has been released. See [here][pac7] for more information. + +To upgrade Aura, you will need to do an `-Syu` first to get the new version of +`alpm`, after which Aura will temporarily break. Follow the manual building +instructions found in the README to get around this. + +#### Fixed + +- Account for the new version of Pacman and `alpm`. + +[pac7]: https://archlinux.org/news/manual-intervention-for-pacman-700-and-local-repositories-required/ + ## 4.0.6 (2024-09-14) #### Added diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 2e3db0a8d..f17c1b272 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "aura-pm" -version = "4.0.6" +version = "4.0.7" dependencies = [ "alpm", "applying", diff --git a/rust/aura-pm/Cargo.toml b/rust/aura-pm/Cargo.toml index 1be20dd17..dc1ae8464 100644 --- a/rust/aura-pm/Cargo.toml +++ b/rust/aura-pm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aura-pm" -version = "4.0.6" +version = "4.0.7" authors = ["Colin Woodbury "] edition = "2021" description = "Install and manage Arch Linux packages." @@ -14,8 +14,8 @@ name = "aura" path = "src/main.rs" [dependencies] -aura-core = { version = "0.8.3", path = "../aura-core" } -r2d2-alpm = { version = "0.2", path = "../r2d2-alpm" } +aura-core = { version = "0.8.4", path = "../aura-core" } +r2d2-alpm = { version = "0.2.1", path = "../r2d2-alpm" } alpm = "4.0" applying = "1.0.0"