diff --git a/CHANGELOG.md b/CHANGELOG.md index af0939a..ae7ff47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v1.1.0](https://github.com/jwt/ruby-jwe/tree/v1.1.0) (2025-07-22) + +[Full Changelog](https://github.com/jwt/ruby-jwe/compare/v1.0.0...v1.1.0) + +**Features:** + +- Add RsaOaep256 algorithm (https://github.com/jwt/ruby-jwe/pull/31) + ## [v1.0.0](https://github.com/jwt/ruby-jwe/tree/v1.0.0) (2025-02-16) [Full Changelog](https://github.com/jwt/ruby-jwe/compare/v0.4.0...v1.0.0) diff --git a/lib/jwe/version.rb b/lib/jwe/version.rb index 63b525f..6a347db 100644 --- a/lib/jwe/version.rb +++ b/lib/jwe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module JWE - VERSION = '1.0.0' + VERSION = '1.1.0' end