diff options
author | actionless | 2022-11-29 04:11:58 +0100 |
---|---|---|
committer | actionless | 2022-11-29 04:11:58 +0100 |
commit | d2e4b7834876126239331e9b3038d17642f48984 (patch) | |
tree | fe0352e6a7cd7890c09d18c8af29fd2f9e62ca56 | |
parent | 97cd09a00e61d3cc6fe4e9ca512a69cf97be62d4 (diff) | |
download | aur-d2e4b7834876126239331e9b3038d17642f48984.tar.gz |
update to 1.14.5
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | CHANGELOG | 10 | ||||
-rw-r--r-- | PKGBUILD | 3 |
3 files changed, 12 insertions, 3 deletions
@@ -1,6 +1,6 @@ pkgbase = pikaur-git pkgdesc = AUR helper which asks all questions before installing/building. Inspired by pacaur, yaourt and yay. - pkgver = 1.14.4 + pkgver = 1.14.5 pkgrel = 1 url = https://github.com/actionless/pikaur arch = any diff --git a/CHANGELOG b/CHANGELOG index b3e975f629d9..dd7f0d670b0e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1990,3 +1990,13 @@ Sun Nov 27 14:02:42 2022 +0100 2022-11-27 e611a58 actionless feat(info_cli): add new Submitter and Co-maintainers fields 2022-11-27 77fe74a actionless fix(aur: AURPackageInfo): allow AUR having some extra fields and only print warning instead of throwing an exception 2022-11-27 9d90136 actionless fix(AURPackageInfo): now AUR returns more data, add `submitter` and `comaintainers` fields + + +Tue Nov 29 04:10:58 2022 +0100 +------------------------------------------------- +1.14.5 Release 1.14.5 + + Notable changes: + 2022-11-29 f43cab0 actionless fix(pkgbuild): remove wheel after running python-installer (fixes #683) + 2022-11-29 ef3a925 actionless fix(filelock: __exit__): remove the file after unlocking (fixes #685) + 2022-11-29 91ba397 actionless fix(updates: print_upgradeable): `not X` vs `X is not None` ; use aur packages as input argument, as repo packages info is already cached in Pacman class anyway (fixes #687) @@ -2,7 +2,7 @@ # shellcheck disable=SC2034,SC2154 pkgname=pikaur-git -pkgver=1.14.4 +pkgver=1.14.5 pkgrel=1 pkgdesc="AUR helper which asks all questions before installing/building. Inspired by pacaur, yaourt and yay." arch=('any') @@ -59,5 +59,4 @@ package() { install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm644 pikaur.1 "$pkgdir/usr/share/man/man1/pikaur.1" cp -r ./packaging/* "${pkgdir}" - cp -r ./dist/* "${pkgdir}" } |