diff --git a/CHANGELOG.md b/CHANGELOG.md index 9edc5dc..42a154c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] - 2026-02-01 + ### Added - Error test vector validation suite with 4,240 negative test cases (#77) - Compressed EC public key decompression for P-256 and P-384 curves (#77) @@ -130,7 +132,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Basic encryption and decryption operations with AES-GCM and key commitment (#10) - Test vector harness for AWS Encryption SDK compatibility testing (#13) -[Unreleased]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/riddler/aws-encryption-sdk-elixir/compare/v0.3.0...v0.4.0 diff --git a/README.md b/README.md index 95afe5f..0787262 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ An Elixir implementation of the [AWS Encryption SDK](https://docs.aws.amazon.com ## Current Status -**Version**: 0.6.0 +**Version**: 0.7.0 ### Features @@ -50,7 +50,7 @@ Add `aws_encryption_sdk` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:aws_encryption_sdk, "~> 0.6.0"} + {:aws_encryption_sdk, "~> 0.7.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 11530c7..eaf624e 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AwsEncryptionSdk.MixProject do use Mix.Project - @version "0.6.0" + @version "0.7.0" @source_url "https://github.com/riddler/aws-encryption-sdk-elixir" def project do