diff --git a/README.md b/README.md index 9302b7f..0b8002a 100644 --- a/README.md +++ b/README.md @@ -695,18 +695,18 @@ python3 setup.py install **Stable version** ```sh -wget https://github.com/roddhjav/pass-import/releases/download/v3.3/pass-import-3.3.tar.gz -tar xzf pass-import-3.3.tar.gz -cd pass-import-3.3 +wget https://github.com/roddhjav/pass-import/releases/download/v3.4/pass-import-3.4.tar.gz +tar xzf pass-import-3.4.tar.gz +cd pass-import-3.4 python3 setup.py install ``` [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/v3.3/pass-import-3.3.tar.gz.asc +wget https://github.com/roddhjav/pass-import/releases/download/v3.4/pass-import-3.4.tar.gz.asc gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC -gpg --verify pass-import-3.3.tar.gz.asc +gpg --verify pass-import-3.4.tar.gz.asc ``` **Local install** diff --git a/debian/changelog b/debian/changelog index 64c88de..02bdaa3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pass-import (3.4-1) stable; urgency=medium + + * Release pass-import v3.4 + + -- Alexandre Pujol Sat, 10 Dec 2022 15:01:59 +0000 + pass-import (3.3-1) stable; urgency=medium * Release pass-import v3.3 diff --git a/pass_import/__about__.py b/pass_import/__about__.py index 4709719..066f8c5 100644 --- a/pass_import/__about__.py +++ b/pass_import/__about__.py @@ -13,7 +13,7 @@ 'the existing password manager.') __uri__ = 'https://github.com/roddhjav/pass-import' -__version__ = '3.3' +__version__ = '3.4' __author__ = 'Alexandre Pujol' __email__ = 'alexandre@pujol.io'