Skip to content

Commit 3f4c85f

Browse files
committed
Release pass-import 2.3
1 parent dfe9fb4 commit 3f4c85f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,18 @@ pacaur -S pass-import # or your preferred AUR install method
176176

177177
**Stable version**
178178
```sh
179-
wget https://github.com/roddhjav/pass-import/releases/download/v2.2/pass-import-2.2.tar.gz
180-
tar xzf pass-import-2.2.tar.gz
181-
cd pass-import-2.2
179+
wget https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz
180+
tar xzf pass-import-2.3.tar.gz
181+
cd pass-import-2.3
182182
sudo make install # For OSX: make install PREFIX=/usr/local
183183
```
184184

185185
[Releases][releases] and commits are signed using [`06A26D531D56C42D66805049C5469996F0DF68EC`][keys].
186186
You should check the key's fingerprint and verify the signature:
187187
```sh
188-
wget https://github.com/roddhjav/pass-import/releases/download/v2.2/pass-import-2.2.tar.gz.asc
188+
wget https://github.com/roddhjav/pass-import/releases/download/v2.3/pass-import-2.3.tar.gz.asc
189189
gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC
190-
gpg --verify pass-import-2.2.tar.gz.asc
190+
gpg --verify pass-import-2.3.tar.gz.asc
191191
```
192192

193193

lib/import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ def main(argv):
685685
parser.add_argument('-q', '--quiet', action='store_true', help='Be quiet.')
686686
parser.add_argument('-v', '--verbose', action='store_true', help='Be verbose.')
687687
parser.add_argument('-V', '--version', action='version',
688-
version='%(prog)s 2.2',
688+
version='%(prog)s 2.3',
689689
help='Show the program version and exit.')
690690

691691
arg = parser.parse_args(argv)

tests/50_sanitychecks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ 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.2"
28+
_pass import --version | grep "pass import 2.3"
2929
'
3030

3131
if test_have_prereq TRAVIS; then
3232
export PASSWORD_STORE_ENABLE_EXTENSIONS=''
3333
export PASSWORD_STORE_EXTENSIONS_DIR=''
3434
test_expect_success 'Testing extension installation' '
3535
make --directory=$EXT_HOME install &&
36-
_pass import --version | grep "pass import 2.2" &&
36+
_pass import --version | grep "pass import 2.3" &&
3737
make --directory=$EXT_HOME uninstall
3838
'
3939
fi

0 commit comments

Comments
 (0)