Merge pull request #223 from ProtonMail/release-2.5.3

Prepare release of v2.6.0
This commit is contained in:
marinthiercelin 2023-03-15 10:45:30 +01:00 committed by GitHub
commit 62f2ca828e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 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.6.0] 2023-03-15
### Added ### Added
- API for adding context to detached signatures: - API for adding context to detached signatures:
@ -21,11 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- In `GetVerifiedSignatureTimestamp`, use the new `VerifyDetachedSignatureAndHash` function to get the verified signature, instead of parsing the signature packets manually to get the timestamp. - In `GetVerifiedSignatureTimestamp`, use the new `VerifyDetachedSignatureAndHash` function to get the verified signature, instead of parsing the signature packets manually to get the timestamp.
- Upgraded golang.org/x/crypto dependency to v0.7.0 - Upgraded golang.org/x/crypto dependency to v0.7.0
## [2.5.2] 2022-01-25 ## [2.5.2] 2023-01-25
### Changed ### Changed
- Update `github.com/ProtonMail/go-crypto` to the latest version - Update `github.com/ProtonMail/go-crypto` to the latest version
## [2.5.1] 2022-01-24 ## [2.5.1] 2023-01-24
### Added ### Added
- Streaming API to encrypt with compression: - Streaming API to encrypt with compression:

View file

@ -3,7 +3,7 @@ package constants
// Constants for armored data. // Constants for armored data.
const ( const (
ArmorHeaderVersion = "GopenPGP 2.5.2" ArmorHeaderVersion = "GopenPGP 2.6.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.5.2" const Version = "2.6.0"