diff --git a/mla/CHANGELOG.md b/mla/CHANGELOG.md index 8479728..02d6ec9 100644 --- a/mla/CHANGELOG.md +++ b/mla/CHANGELOG.md @@ -5,6 +5,25 @@ 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.1.0] - 2021-01-26 + +### Thanks + +- [Matthieu Buffet](https://github.com/mtth-bfft) + +### Added/Changed + +- C/CPP bindings (for archive writing), and associated tests +- MLA releases (through the CI), including: + * `.h` and `.hpp` headers. There are generated, but provided to ease the use of bindings without the Rust toolchain; + * `libmla.a` for Linux x86-64 bits; + * `mla.lib` (static), `mla.dll` + `mla.dll.lib` (dynamic), `mla.pdb` (symbols) for Windows i686 and x86_64, in *release* and *debug* targets. + +### Fixed + +- Force `aes-ctr` and `aes` version, to avoid breaking changes +- Fix [an issue](https://github.com/ANSSI-FR/MLA/issues/63) which may occurs in archive with more than 2^32 bits data + ## [1.0.1] - 2020-09-14 ### Thanks diff --git a/mla/Cargo.toml b/mla/Cargo.toml index f620652..60a2726 100644 --- a/mla/Cargo.toml +++ b/mla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mla" -version = "1.0.1" +version = "1.1.0" authors = ["Camille Mougey "] edition = "2018" license = "LGPL-3.0-only"