From cfcbf53c33833a6a75d780f9c514a12eda6d6bd8 Mon Sep 17 00:00:00 2001 From: Joakim Antman Date: Tue, 22 Jul 2025 21:08:36 +0300 Subject: [PATCH] Cut version 1.1.0 --- CHANGELOG.md | 8 ++++++++ lib/jwe/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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