Skip to content

Commit

Permalink
Release pass-import 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roddhjav committed Jul 19, 2018
1 parent dfe9fb4 commit 3f4c85f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


Expand Down
2 changes: 1 addition & 1 deletion lib/import.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions tests/50_sanitychecks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ 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
export PASSWORD_STORE_ENABLE_EXTENSIONS=''
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
Expand Down

0 comments on commit 3f4c85f

Please sign in to comment.