From 88d2e53489fcf21b1edb0f2da5c0491a406310e3 Mon Sep 17 00:00:00 2001 From: Mark Schreiber Date: Wed, 4 Dec 2024 10:42:32 -0500 Subject: [PATCH] release 2.2.0 (#578) --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fa98207..cdf0dda4 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ For example: software.amazon.nio.s3 aws-java-nio-spi-for-s3 - 2.1.0 + 2.2.0 ``` `build.gradle(.kts)` ```groovy - implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.1.0") + implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.2.0") ``` The library heavily relies on the `crt` client from aws. It uses the [`uber` @@ -86,7 +86,7 @@ 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.1.0") { +> implementation("software.amazon.nio.s3:aws-java-nio-spi-for-s3:2.2.0") { > exclude group: 'software.amazon.awssdk.crt', module: 'aws-crt' > } > implementation 'software.amazon.awssdk.crt:aws-crt:0.31.1:linux-x86_64' diff --git a/build.gradle b/build.gradle index 260212e3..35083aaa 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ repositories { group = 'software.amazon.nio.s3' archivesBaseName = 'nio-spi-for-s3' -version = '2.1.0' +version = '2.2.0' java { withSourcesJar()