From 73474923b1f17188578b68c1914674be08bb302a Mon Sep 17 00:00:00 2001 From: Alberto Zugazagoitia Date: Thu, 22 Jun 2023 19:43:00 +0200 Subject: [PATCH] Bump to 5.6.1 --- .github/README.md | 6 +++--- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/README.md b/.github/README.md index 92e66b9..648eb75 100644 --- a/.github/README.md +++ b/.github/README.md @@ -22,13 +22,13 @@ As simple as adding a dependency: io.javalin.community.ssl ssl-plugin - 5.6.0 + 5.6.1 ``` ### Gradle ```kotlin -implementation('io.javalin.community.ssl:ssl-plugin:5.6.0') +implementation('io.javalin.community.ssl:ssl-plugin:5.6.1') ``` @@ -170,7 +170,7 @@ sslPlugin.reload(ssl->{ | Package | Version | License | |-----------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------| -| [Javalin](https://github.com/javalin/javalin) | `5.6.0` | [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | +| [Javalin](https://github.com/javalin/javalin) | `5.6.1` | [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | | [SSLContext Kickstart](https://github.com/Hakky54/sslcontext-kickstart) | `8.1.1` | [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | ## Contributing diff --git a/build.gradle b/build.gradle index 159023c..f46eaac 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { group = 'io.javalin.community.ssl' //Must be formatted following the RegEx: /version\s*=\s*'\S+'/g -version = '5.6.0' +version = '5.6.1' jacoco { toolVersion = '0.8.8' @@ -42,7 +42,7 @@ configurations { } dependencies { - def javalin = "5.6.0" + def javalin = "5.6.1" def junit = '5.9.1' def sslContextKickstart = '8.1.1' def okhttp = "4.11.0"