From 0d891b97f245b6678f294b6562366746f64d626d Mon Sep 17 00:00:00 2001 From: NicoHood Date: Sun, 31 Jan 2021 10:26:31 +0100 Subject: [PATCH] Update changelog and readme for 1.4.1 release --- CHANGELOG.md | 10 +++++++++- Readme.md | 10 ++++++++-- gpgit.sh | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ff146..2cb84d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,16 @@ This changlog uses the [ISO 8601 date format](https://www.iso.org/iso-8601-date- ## [Unreleased] +## [1.4.1] - 2021-01-31 + +### Changed + +* Update license date and add license to script + ### Fixed * Fixed Github API json escaping issue +* Added depcrecated warning about `--no-github` parameter ## [1.4.0] - 2021-01-29 @@ -174,7 +181,8 @@ This changlog uses the [ISO 8601 date format](https://www.iso.org/iso-8601-date- ### Added - Initial release of the software -[Unreleased]: https://github.com/NicoHood/gpgit/compare/1.4.0...HEAD +[Unreleased]: https://github.com/NicoHood/gpgit/compare/1.4.1...HEAD +[1.4.1]: https://github.com/NicoHood/gpgit/compare/1.4.0...1.4.1 [1.4.0]: https://github.com/NicoHood/gpgit/compare/1.3.4...1.4.0 [1.3.4]: https://github.com/NicoHood/gpgit/compare/1.3.3...1.3.4 [1.3.3]: https://github.com/NicoHood/gpgit/compare/1.3.2...1.3.3 diff --git a/Readme.md b/Readme.md index 0cfde07..e3d8a74 100644 --- a/Readme.md +++ b/Readme.md @@ -52,13 +52,19 @@ The security status of GNU/Linux projects will be tracked in the [Linux Security * [Arch Linux](https://archlinux.org/packages/community/any/gpgit/) `sudo pacman -S gpgit` ### Manual Installation + +#### Dependencies + +* gnu getopt +* gnu date + ```bash # Install dependencies and optional dependencies sudo apt-get install bash gnupg2 git tar xz-utils coreutils gawk grep sed sudo apt-get install gzip bzip lzip file jq curl # Download and verify source -VERSION=1.4.0 +VERSION=1.4.1 wget "https://github.com/NicoHood/gpgit/releases/download/${VERSION}/gpgit-${VERSION}.tar.xz" wget "https://github.com/NicoHood/gpgit/releases/download/${VERSION}/gpgit-${VERSION}.tar.xz.asc" gpg2 --keyserver hkps://keyserver.ubuntu.com --recv-keys 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161 @@ -83,7 +89,7 @@ If you add and commit a `CHANGELOG.md` file to your Git with the [Keep a Changel $ gpgit --help Usage: gpgit [options] [ | ] -GPGit 1.4.0 https://github.com/NicoHood/gpgit +GPGit 1.4.1 https://github.com/NicoHood/gpgit A shell script that automates the process of signing Git sources via GPG. Mandatory arguments: diff --git a/gpgit.sh b/gpgit.sh index c516760..e126ffb 100755 --- a/gpgit.sh +++ b/gpgit.sh @@ -20,7 +20,7 @@ # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. -VERSION="1.4.0" +VERSION="1.4.1" # Avoid any encoding problems export LANG=C