diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | build-aux/PKGBUILD | 2 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | guix.scm | 2 | ||||
-rw-r--r-- | hall.scm | 2 |
5 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,8 @@ +2021-01-31 Fredrik Salomonsson <plattfot@posteo.net> + * 2.0.3: + Fix issue with the executable not finding the module. + Add info on how to use it in the README. + Add gotcha in the README when using this with guix on a foreign distro. 2021-01-27 Fredrik Salomonsson <plattfot@posteo.net> * 2.0.2: Update guix.scm to build from source. diff --git a/build-aux/PKGBUILD b/build-aux/PKGBUILD index 1e53425..baabdc0 100644 --- a/build-aux/PKGBUILD +++ b/build-aux/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Fredrik Salomonsson <plattfot@posteo.net> pkgname=guile-pinentry-rofi -pkgver=2.0.2 +pkgver=2.0.3 pkgrel=1 epoch= pkgdesc="rofi frontend for pinentry" diff --git a/configure.ac b/configure.ac index 50bcd4b..1dbd698 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ dnl -*- Autoconf -*- -AC_INIT(pinentry-rofi, 2.0.2) -AC_SUBST(HVERSION, "\"2.0.2\"") +AC_INIT(pinentry-rofi, 2.0.3) +AC_SUBST(HVERSION, "\"2.0.3\"") AC_SUBST(AUTHOR, "\"Fredrik Salomonsson\"") AC_SUBST(COPYRIGHT, "'(2020)") AC_SUBST(LICENSE, gpl3+) @@ -29,7 +29,7 @@ (define-public pinentry-rofi (package (name "pinentry-rofi") - (version "2.0.2") + (version "2.0.3") (source (origin (method git-fetch) (uri (git-reference @@ -1,7 +1,7 @@ (hall-description (name "pinentry-rofi") (prefix "") - (version "2.0.2") + (version "2.0.3") (author "Fredrik Salomonsson") (copyright (2020)) (synopsis "Rofi frontend to pinentry") |