From b1e005fec3363cea7b138b5d8962750c2c2bb85f Mon Sep 17 00:00:00 2001 From: Aron Wussler Date: Wed, 29 Apr 2020 18:48:13 +0200 Subject: [PATCH] Release version 2.0.1 --- CHANGELOG.md | 4 ++-- README.md | 2 +- constants/armor.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77c2744..a7564b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.0.1] - 2020-05-01 ### Security - Updated underlying crypto library - Improved memory zeroing in helpers ### Fixed -- Fixed test `TestMultipleKeyMessageEncryption` - Fixed garbage collection issues when compiled on gomobile, by copying byte slices - Password encrypted binary files now have the correct flags - Fixed missing space in `Hash` header of cleartext messages +- Fixed tests `TestMultipleKeyMessageEncryption` and `TestSymmetricKeyPacket` ## Changed - Providing empty passphrase does no longer throw an error when unlocking an unencrypted private key diff --git a/README.md b/README.md index 33e8103..48f1aad 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ To use this library using [Go Modules](https://github.com/golang/go/wiki/Modules ```gomod require ( ... - github.com/ProtonMail/gopenpgp/v2 v2.0.0 + github.com/ProtonMail/gopenpgp/v2 v2.0.1 ) replace golang.org/x/crypto => github.com/ProtonMail/crypto v0.0.0-20200416114516-1fa7f403fb9c diff --git a/constants/armor.go b/constants/armor.go index 28db229..fef5fe2 100644 --- a/constants/armor.go +++ b/constants/armor.go @@ -3,7 +3,7 @@ package constants // Constants for armored data. const ( - ArmorHeaderVersion = "GopenPGP 2.0.0" + ArmorHeaderVersion = "GopenPGP 2.0.1" ArmorHeaderComment = "https://gopenpgp.org" PGPMessageHeader = "PGP MESSAGE" PGPSignatureHeader = "PGP SIGNATURE"