Skip to content

Commit

Permalink
Update changelog and readme for 1.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHood committed Jan 31, 2021
1 parent c0f7508 commit f84d756
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@ 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

```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
Expand All @@ -83,7 +84,7 @@ If you add and commit a `CHANGELOG.md` file to your Git with the [Keep a Changel
$ gpgit --help
Usage: gpgit [options] <tagname> [<commit> | <object>]
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:
Expand Down
2 changes: 1 addition & 1 deletion gpgit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f84d756

Please sign in to comment.