From d3fe807b85777a4c201ed88d504ccdfdf86c8696 Mon Sep 17 00:00:00 2001 From: Lukas Burkhalter <10532077+lubux@users.noreply.github.com> Date: Tue, 26 Nov 2024 11:56:05 +0100 Subject: [PATCH] Prepare release 3.1.0 (#318) --- CHANGELOG.md | 9 +++++++++ constants/version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5beb8ed..2352ffa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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). +## [3.1.0] 2024-11-25 +### Added +- Add decryption option to allow disabling the integrity tag requirement. +- Add option to decrypt with signature keys for legacy messages. + +### Changed +- Rename `profile.Custom.AllowWeakRSA` to `profile.Custom.InsecureAllowWeakRSA` +- Update go-crypto to `1.1.3`. + ## [3.0.0] 2024-10-07 ### Changed - Remove `Name` field from profile. diff --git a/constants/version.go b/constants/version.go index a8d13603..5c8cdb14 100644 --- a/constants/version.go +++ b/constants/version.go @@ -1,3 +1,3 @@ package constants -const Version = "3.0.0" +const Version = "3.1.0"