Skip to content

Commit

Permalink
bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markjschreiber committed Sep 30, 2024
1 parent d839b8a commit bc081bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ For example:
<dependency>
<groupId>software.amazon.nio.s3</groupId>
<artifactId>aws-java-nio-spi-for-s3</artifactId>
<version>2.0.4</version>
<version>2.1.0</version>
</dependency>
```

`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`
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit bc081bd

Please sign in to comment.