From 7fa828017af0aedbbe3252b12bd4160d8dd089bc Mon Sep 17 00:00:00 2001 From: Aron Wussler Date: Wed, 22 Jun 2022 16:30:38 +0200 Subject: [PATCH] Release version 2.4.8 --- CHANGELOG.md | 7 +++---- constants/armor.go | 2 +- constants/version.go | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04d70b8..8e35944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,10 @@ 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.4.8] 2022-06-22 -### Added -- `SessionKey.Decrypt() and SessionKey.DecryptAndVerify`, now suport the decryption of AEAD encrypted -data packets (packet type 20). +### Changed +- `SessionKey.Decrypt() and SessionKey.DecryptAndVerify()`, now support the decryption of AEAD encrypted data packets (packet type 20). ## [2.4.7] 2022-04-27 diff --git a/constants/armor.go b/constants/armor.go index 2c75577..432cbc1 100644 --- a/constants/armor.go +++ b/constants/armor.go @@ -3,7 +3,7 @@ package constants // Constants for armored data. const ( - ArmorHeaderVersion = "GopenPGP 2.4.7" + ArmorHeaderVersion = "GopenPGP 2.4.8" ArmorHeaderComment = "https://gopenpgp.org" PGPMessageHeader = "PGP MESSAGE" PGPSignatureHeader = "PGP SIGNATURE" diff --git a/constants/version.go b/constants/version.go index 29df3e3..99cb094 100644 --- a/constants/version.go +++ b/constants/version.go @@ -1,3 +1,3 @@ package constants -const Version = "2.4.7" +const Version = "2.4.8"