Release v2.2.0 (#135)

This commit is contained in:
wussler 2021-06-30 17:07:52 +02:00 committed by GitHub
parent c46ed8ed9e
commit cba6683c62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -4,7 +4,7 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## [2.2.0] 2021-06-30
### Added ### Added
- Streaming API: - Streaming API:
- New structs: - New structs:
@ -131,6 +131,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Android: `Go2AndroidReader(reader)`, implements the `Reader` interface, but returns `n == -1` instead of `err == io.EOF` - Android: `Go2AndroidReader(reader)`, implements the `Reader` interface, but returns `n == -1` instead of `err == io.EOF`
- iOS: `Go2IOSReader(reader)`, implements `MobileReader`. - iOS: `Go2IOSReader(reader)`, implements `MobileReader`.
- Using a `Writer`: you can use a writer returned by golang directly. - Using a `Writer`: you can use a writer returned by golang directly.
## [2.1.10] 2021-06-16 ## [2.1.10] 2021-06-16
### Fixed ### Fixed
- Removed time interpolation via monotonic clock that can cause signatures in the future - Removed time interpolation via monotonic clock that can cause signatures in the future

View file

@ -3,7 +3,7 @@ package constants
// Constants for armored data. // Constants for armored data.
const ( const (
ArmorHeaderVersion = "GopenPGP 2.1.9" ArmorHeaderVersion = "GopenPGP 2.2.0"
ArmorHeaderComment = "https://gopenpgp.org" ArmorHeaderComment = "https://gopenpgp.org"
PGPMessageHeader = "PGP MESSAGE" PGPMessageHeader = "PGP MESSAGE"
PGPSignatureHeader = "PGP SIGNATURE" PGPSignatureHeader = "PGP SIGNATURE"

View file

@ -1,3 +1,3 @@
package constants package constants
const Version = "2.1.9" const Version = "2.2.0"