From 4905c72aa2342c0e4f59d95d79908611416814e6 Mon Sep 17 00:00:00 2001 From: Alberto Zugazagoitia Date: Mon, 31 Jul 2023 18:50:35 +0200 Subject: [PATCH] Bump to 5.6.2 --- .github/README.md | 8 ++++---- build.gradle | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/README.md b/.github/README.md index 648eb75..90c6f31 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.1 + 5.6.2 ``` ### Gradle ```kotlin -implementation('io.javalin.community.ssl:ssl-plugin:5.6.1') +implementation('io.javalin.community.ssl:ssl-plugin:5.6.2') ``` @@ -170,8 +170,8 @@ sslPlugin.reload(ssl->{ | Package | Version | License | |-----------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------| -| [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) | +| [Javalin](https://github.com/javalin/javalin) | `5.6.2` | [![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.4` | [![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 55c0a9e..69f2d29 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.1' +version = '5.6.2' jacoco { toolVersion = '0.8.8' @@ -42,7 +42,7 @@ configurations { } dependencies { - def javalin = "5.6.1" + def javalin = "5.6.2" def junit = '5.10.0' def sslContextKickstart = '8.1.4' def okhttp = "4.11.0"