Release 2.1.3 (#108)

This commit is contained in:
wussler 2020-12-09 15:57:44 +01:00 committed by GitHub
parent 2a4ac0999b
commit a42d48a203
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -4,13 +4,14 @@ 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.1.3] 2020-12-09
### Added
- `helper.FreeOSMemory()` to explicitly call the GC and release the memory to the OS
### Changed
- users of the library no longer need a `replace` directive for x/crypto
- added new calls to `runtime.GC()` in the low memory attachment processor
- Users of the library no longer need a `replace` directive for x/crypto
- Added new calls to `runtime.GC()` in the low memory attachment processor
- Reduced attachment memory allocation
## [2.1.2] 2020-12-01
### Added
@ -18,7 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved canonicalization performance
- Reduced attachment memory allocation
## [2.1.1] 2020-11-16
### Changed

View file

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

View file

@ -1,3 +1,3 @@
package constants
const Version = "2.1.2"
const Version = "2.1.3"