From bc081bd1e7e99ff4edf3faa29ea80614427d7fcb Mon Sep 17 00:00:00 2001 From: Mark Schreiber Date: Mon, 30 Sep 2024 14:39:57 -0400 Subject: [PATCH] bump version to 2.1.0 --- README.md | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3b47b343..5fa98207 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ For example: software.amazon.nio.s3 aws-java-nio-spi-for-s3 - 2.0.4 + 2.1.0 ``` `build.gradle(.kts)` ```groovy - implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.0.2") + implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.1.0") ``` The library heavily relies on the `crt` client from aws. It uses the [`uber` @@ -86,10 +86,10 @@ and wide range of supported platforms. > If **size** is an **issue**, you can **exclude** the `crt` dependency from the library and import the [specific `crt` library](https://github.com/awslabs/aws-crt-java?tab=readme-ov-file#platform-specific-jars) > for your platform. For example: > ``` -> implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.0.2") { +> implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.1.0") { > exclude group: 'software.amazon.awssdk.crt', module: 'aws-crt' > } -> implementation 'software.amazon.awssdk.crt:aws-crt:0.29.11:linux-x86_64' +> implementation 'software.amazon.awssdk.crt:aws-crt:0.31.1:linux-x86_64' > ``` ### Java compatibility diff --git a/build.gradle b/build.gradle index bf2fc6dc..eedf58e0 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ repositories { group = 'software.amazon.nio.s3' archivesBaseName = 'nio-spi-for-s3' -version = '2.0.5' +version = '2.1.0' java { withSourcesJar()