Skip to content

Commit

Permalink
Release pass-import 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
roddhjav committed Jun 8, 2019
1 parent 0f0d949 commit 6fb1bbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -276,19 +276,19 @@ sudo make install # For OSX: make install PREFIX=/usr/local

**Stable version**
```sh
wget https://github.com/roddhjav/pass-import/releases/download/v2.5/pass-import-2.5.tar.gz
tar xzf pass-import-2.5.tar.gz
cd pass-import-2.5
wget https://github.com/roddhjav/pass-import/releases/download/v2.6/pass-import-2.6.tar.gz
tar xzf pass-import-2.6.tar.gz
cd pass-import-2.6
make
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.5/pass-import-2.5.tar.gz.asc
wget https://github.com/roddhjav/pass-import/releases/download/v2.6/pass-import-2.6.tar.gz.asc
gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC
gpg --verify pass-import-2.5.tar.gz.asc
gpg --verify pass-import-2.6.tar.gz.asc
```

**Local install**
Expand Down
2 changes: 1 addition & 1 deletion pass_import.py
Expand Up @@ -32,7 +32,7 @@
from subprocess import Popen, PIPE # nosec
from collections import defaultdict

__version__ = '2.5'
__version__ = '2.6'

importers = { # pylint: disable=invalid-name
'1password': 'OnePassword',
Expand Down

0 comments on commit 6fb1bbd

Please sign in to comment.