From 6a157fb8c10a347473fc800b9343feb4aadc7820 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Wed, 28 Feb 2024 11:44:51 +0000 Subject: [PATCH] Release pass-update 2.2.1 --- README.md | 12 ++++++------ debian/changelog | 6 ++++++ update.bash | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6b40d37..be17800 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ generating a new one. This behaviour can be changed using the provided options. ## Usage ``` -pass update 2.2 - A pass extension that provides an easy flow for updating passwords. +pass update 2.2.1 - A pass extension that provides an easy flow for updating passwords. Usage: pass update [-h] [-n] [-l ] [-c | -p] [-p | -m] @@ -163,18 +163,18 @@ sudo make install # For OSX: make install PREFIX=/usr/local **Stable version** ```sh -wget https://github.com/roddhjav/pass-update/releases/download/v2.2/pass-update-2.2.tar.gz -tar xzf pass-update-2.2.tar.gz -cd pass-update-2.2 +wget https://github.com/roddhjav/pass-update/releases/download/v2.2.1/pass-update-2.2.1.tar.gz +tar xzf pass-update-2.2.1.tar.gz +cd pass-update-2.2.1 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-update/releases/download/v2.2/pass-update-2.2.tar.gz.asc +wget https://github.com/roddhjav/pass-update/releases/download/v2.2.1/pass-update-2.2.1.tar.gz.asc gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC -gpg --verify pass-update-2.2.tar.gz.sig +gpg --verify pass-update-2.2.1.tar.gz.sig ``` ## Contribution diff --git a/debian/changelog b/debian/changelog index 6518ab2..38be8af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pass-update (2.2.1-1) stable; urgency=medium + + * Release pass-update v2.2.1 + + -- Alexandre Pujol Wed, 28 Feb 2024 11:44:51 +0000 + pass-update (2.2-1) stable; urgency=medium * Release pass-update v2.2 diff --git a/update.bash b/update.bash index c7ebcc9..b6e86d3 100755 --- a/update.bash +++ b/update.bash @@ -5,7 +5,7 @@ set -e -o pipefail -readonly VERSION="2.2" +readonly VERSION="2.2.1" warning() { printf 'Warning %s\n' "$*" >&2; }