diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf0ab62..35466100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## Paru v1.5.0 (2021-3-30) + +### Fixed + +- Fix typos #283 #276 +- Fix packages being marked as explicit when they shouldn't 47c4caf +- Fix PAGER having higher priority than PARU_PAGER 82a7326 +- Fix pacman error message not including sudo #297 + +### Added + +- Wait for pacman when db is locked 57d73db + +### Changed + +- Only upgrade installed packages when using chroot 4d126bc +- Handle devel packages in local repo but not installed c5dfff2 c698f2e +- Don't enable provider menu on sysupgrade c698f2e + ## Paru v1.4.0 (2021-3-14) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index eaa7d213..4df37a76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "adler" version = "0.2.3" @@ -1070,7 +1072,7 @@ dependencies = [ [[package]] name = "paru" -version = "1.4.0" +version = "1.5.0" dependencies = [ "alpm", "alpm-utils", diff --git a/Cargo.toml b/Cargo.toml index 1aaa6836..a9a98496 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paru" -version = "1.4.0" +version = "1.5.0" authors = ["morganamilo "] edition = "2018"