Skip to content

Commit

Permalink
Merge pull request #180 from commial/prepare-mla-v1.4.0
Browse files Browse the repository at this point in the history
Prepare for release mla-v1.4.0
  • Loading branch information
commial committed Oct 2, 2023
2 parents 4ebefa5 + 932cf66 commit 8f4ada2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions mla/CHANGELOG.md
Expand Up @@ -5,6 +5,20 @@ 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).

## [1.4.0] - 2023-10-02

### Added/Changed

- Code cleaning
- Bump dependencies
- Benchmarking: reduce the number of test case per test, add new scenarios
- Explicitely ask for `zeroize` and `static_secrets` feature in `x25519-dalek`

### Fixed

- FailSafe Reader: drastically improve performance
- Fix a Brotli-decompressor regression ([following a minor update](https://github.com/ANSSI-FR/MLA/pull/163)) and add corresponding tests

## [1.3.0] - 2022-08-22

### Thanks
Expand Down
4 changes: 2 additions & 2 deletions mla/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mla"
version = "1.3.0"
version = "1.4.0"
authors = ["Camille Mougey <camille.mougey@ssi.gouv.fr>"]
edition = "2018"
license = "LGPL-3.0-only"
Expand Down Expand Up @@ -28,7 +28,7 @@ ctr = { version = "0.9", default-features = false}
subtle = { version = "2", default-features = false}
digest = { version = "0", default-features = false}
# ECC
x25519-dalek = { version = "2", default-features = false, features = ["zeroize"]}
x25519-dalek = { version = "2", default-features = false, features = ["zeroize", "static_secrets"]}
hkdf = { version = "0", default-features = false}
sha2 = { version = "0", default-features = false}
zeroize = { version = "1", default-features = false}
Expand Down

0 comments on commit 8f4ada2

Please sign in to comment.