From 3f4c85f78961c9a80e7f203a985c6cb60df076d1 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Thu, 19 Jul 2018 22:24:05 +0100 Subject: [PATCH] Release pass-import 2.3 --- README.md | 10 +++++----- lib/import.py | 2 +- tests/50_sanitychecks.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4f3a335..e64b2e0 100644 --- a/README.md +++ b/README.md @@ -176,18 +176,18 @@ pacaur -S pass-import # or your preferred AUR install method **Stable version** ```sh -wget /~https://github.com/roddhjav/pass-import/releases/download/v2.2/pass-import-2.2.tar.gz -tar xzf pass-import-2.2.tar.gz -cd pass-import-2.2 +wget /~https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz +tar xzf pass-import-2.3.tar.gz +cd pass-import-2.3 sudo make install # For OSX: make install PREFIX=/usr/local ``` [Releases][releases] and commits are signed using [`06A26D531D56C42D66805049C5469996F0DF68EC`][keys]. You should check the key's fingerprint and verify the signature: ```sh -wget /~https://github.com/roddhjav/pass-import/releases/download/v2.2/pass-import-2.2.tar.gz.asc +wget /~https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz.asc gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC -gpg --verify pass-import-2.2.tar.gz.asc +gpg --verify pass-import-2.3.tar.gz.asc ``` diff --git a/lib/import.py b/lib/import.py index 99cc6b6..dcc850e 100644 --- a/lib/import.py +++ b/lib/import.py @@ -685,7 +685,7 @@ def main(argv): parser.add_argument('-q', '--quiet', action='store_true', help='Be quiet.') parser.add_argument('-v', '--verbose', action='store_true', help='Be verbose.') parser.add_argument('-V', '--version', action='version', - version='%(prog)s 2.2', + version='%(prog)s 2.3', help='Show the program version and exit.') arg = parser.parse_args(argv) diff --git a/tests/50_sanitychecks.sh b/tests/50_sanitychecks.sh index fac7367..7181d42 100644 --- a/tests/50_sanitychecks.sh +++ b/tests/50_sanitychecks.sh @@ -25,7 +25,7 @@ test_expect_success 'Testing corner cases' ' test_expect_success 'Testing help message' ' _pass import --help | grep "[manager] [file]" && - _pass import --version | grep "pass import 2.2" + _pass import --version | grep "pass import 2.3" ' if test_have_prereq TRAVIS; then @@ -33,7 +33,7 @@ if test_have_prereq TRAVIS; then export PASSWORD_STORE_EXTENSIONS_DIR='' test_expect_success 'Testing extension installation' ' make --directory=$EXT_HOME install && - _pass import --version | grep "pass import 2.2" && + _pass import --version | grep "pass import 2.3" && make --directory=$EXT_HOME uninstall ' fi