From dad5015ee70e0b64f262ea8143648a82e0d0df19 Mon Sep 17 00:00:00 2001 From: Conor Egan <68134729+c-eg@users.noreply.github.com> Date: Thu, 27 Jun 2024 14:13:32 +0100 Subject: [PATCH] v2.1.1 --- NEWS.md | 6 ++++++ README.md | 4 ++-- build.gradle | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index f9ea45a..145145e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,12 @@ See [releases](https://github.com/c-eg/themoviedbapi/releases) for downloads and details +v2.1.1 +----- + +* add crypto module in module-info - needed for images created with jlink +because it is not included by default and will fail the SSL handshake without it + v2.1.0 ----- diff --git a/README.md b/README.md index dad2d22..e465dad 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ project. uk.co.conoregan themoviedbapi - 2.1.0 + 2.1.1 ``` @@ -33,7 +33,7 @@ project. ```groovy dependencies { - implementation 'uk.co.conoregan:themoviedbapi:2.1.0' + implementation 'uk.co.conoregan:themoviedbapi:2.1.1' } ``` diff --git a/build.gradle b/build.gradle index 8f32a90..2769fff 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ dependencies { // https://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified group 'uk.co.conoregan' -version '2.1.0' +version '2.1.1' java { withJavadocJar()