diff --git a/CHANGELOG.md b/CHANGELOG.md index 26d581ed..f21d9e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## Paru v1.6.0 (2021-5-3) + +### Fixed + +- Fix -Sc failing when pkg/ is not writable #324 +- Fix not checking return of `git ls-remote` cd2049a +- Fix progress bar display 97b2d0b +- Fix upgrademenu crashing on non installed packages de26909 +- Don't drop to a shell after -Cu b951d73 +- Fix -Sc doc f83cbd3 + +### Added + +- Paru now sets the user agent for aur requests 841ebb5 +- support latest pacman-git 2cbe4ed + +### Removed + +- Removed pacman6-alpha support -- use pacman or pacman-git instead + +### Changed + +- Cancel sudo loop after sudo fails acbcfc1 +- --gendb: don't update already existing entries 49eb22 +- Better error message when AUR does not return 400 #351 + ## Paru v1.5.1 (2021-4-13) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 6f77d7c1..71c3c931 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "paru" -version = "1.5.1" +version = "1.6.0" dependencies = [ "alpm", "alpm-utils", diff --git a/Cargo.toml b/Cargo.toml index 0e2316a1..ab77c0f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paru" -version = "1.5.1" +version = "1.6.0" authors = ["morganamilo "] edition = "2018"