Skip to content

Commit 291777a

Browse files
committed
Release pass-import 2.4
1 parent e63b95a commit 291777a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,19 +209,19 @@ sudo make install # For OSX: make install PREFIX=/usr/local
209209

210210
**Stable version**
211211
```sh
212-
wget https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz
213-
tar xzf pass-import-2.3.tar.gz
214-
cd pass-import-2.3
212+
wget https://github.com/roddhjav/pass-import/releases/download/v2.4/pass-import-2.4.tar.gz
213+
tar xzf pass-import-2.4.tar.gz
214+
cd pass-import-2.4
215215
make
216216
sudo make install # For OSX: make install PREFIX=/usr/local
217217
```
218218

219219
[Releases][releases] and commits are signed using [`06A26D531D56C42D66805049C5469996F0DF68EC`][keys].
220220
You should check the key's fingerprint and verify the signature:
221221
```sh
222-
wget https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz.asc
222+
wget https://github.com/roddhjav/pass-import/releases/download/v2.4/pass-import-2.4.tar.gz.asc
223223
gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC
224-
gpg --verify pass-import-2.3.tar.gz.asc
224+
gpg --verify pass-import-2.4.tar.gz.asc
225225
```
226226

227227

pass_import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from subprocess import Popen, PIPE
3131
from collections import OrderedDict, defaultdict
3232

33-
__version__ = '2.3'
33+
__version__ = '2.4'
3434

3535
importers = {
3636
'1password': ['OnePassword', 'https://1password.com/'],

tests/test_sanitychecks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test_expect_success 'Testing corner cases' '
2525

2626
test_expect_success 'Testing help message' '
2727
_pass import --help | grep "[manager] [file]" &&
28-
_pass import --version | grep "pass import 2.3"
28+
_pass import --version | grep "pass import 2.4"
2929
'
3030

3131
test_done

0 commit comments

Comments
 (0)