Skip to content

Commit

Permalink
chore: Prepare pre-relese v3.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lubux committed Jan 18, 2024
1 parent dd3add6 commit 62abce9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,31 @@ 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.0.0-alpha.0] 2024-01-18
### Added
- New simplified API that is not backward compatible.
- Full support for the crypto refresh.
- Improved interoperability with other OpenPGP libraries.
- Streaming support for all operations.
- Introduces profiles for OpenPGP customization.
- More documentation and examples.

### Changed
- Mobile specific code is moved to the `mobile` package.
- Mime specific code is moved to the `mime` package.
- Replaces the go-crypto v1 API with the v2 API.

### Removed
- The `helper` package, use the crypto package with the new API instead.
- `subtle` and `models` package.
- Time management code for retrieving and setting timestamps.

## [2.7.4] 2023-10-27
### Fixed
- Ensure that `(SessionKey).Decrypt` functions return an error if no integrity protection is present in the encrypted input. To protect SEIPDv1 encrypted messages, SED packets must not be allowed in decryption.

## [2.7.3] 2023-08-28
## Added
### Added
- Add `helper.QuickCheckDecrypt` function to the helper package. The function allows to check with high probability if a session key can decrypt a SEIPDv1 data packet given its 24-byte prefix.

## [2.7.2] 2023-07-17
Expand Down
2 changes: 1 addition & 1 deletion constants/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package constants

const Version = "3.0.0-alpha"
const Version = "3.0.0-alpha.0"

0 comments on commit 62abce9

Please sign in to comment.