Skip to content

Commit 00e6948

Browse files
authored
chore: increasing version number to 1.2.0 (#299)
## Description of change Updating readme and version number to prepare for release #### Does this contribution introduce any new public APIs or behaviors? No #### How was the contribution tested? Benchmarking, integration tests. #### Does this contribution need a changelog entry? - [x] I have updated the CHANGELOG or README if appropriate --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/).
1 parent 80bef38 commit 00e6948

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v1.2.0 (Jun 25, 2025)
2+
3+
* Replace DAT with AAL https://github.com/awslabs/analytics-accelerator-s3/pull/300
4+
* Add support for readFully at the S3SeekableInputStream level https://github.com/awslabs/analytics-accelerator-s3/pull/293
5+
* Adds test cases for readVectored() https://github.com/awslabs/analytics-accelerator-s3/pull/284
6+
* Update-integration-tests-worflow https://github.com/awslabs/analytics-accelerator-s3/pull/291
7+
* SSE_C changes https://github.com/awslabs/analytics-accelerator-s3/pull/281
8+
* Adds in support for S3A's auditing
9+
* Pass down OpenStreamInformation to objectClient https://github.com/awslabs/analytics-accelerator-s3/pull/283
10+
* Migration to Central Portal for Maven https://github.com/awslabs/analytics-accelerator-s3/pull/282
11+
* Implements readVectored() in AAL https://github.com/awslabs/analytics-accelerator-s3/pull/270
12+
* Fix bug in small object prefetching https://github.com/awslabs/analytics-accelerator-s3/pull/279
13+
* Modify gradle setup step to reduce time https://github.com/awslabs/analytics-accelerator-s3/pull/278
14+
* Run integration tests on self hosted runner https://github.com/awslabs/analytics-accelerator-s3/pull/277
15+
* Introduces common executor pool https://github.com/awslabs/analytics-accelerator-s3/pull/275
16+
* Fix fleaky unit tests on BlobStore https://github.com/awslabs/analytics-accelerator-s3/pull/273
17+
* Move small object prefetching to physicalIO https://github.com/awslabs/analytics-accelerator-s3/pull/258
18+
* Updated release.yml to fix signing issue https://github.com/awslabs/analytics-accelerator-s3/pull/269
19+
120
## v1.1.0 (May 09, 2025)
221

322
* feat: Memory Manager https://github.com/awslabs/analytics-accelerator-s3/pull/251

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To get started, import the library dependency from Maven into your project:
3030
<dependency>
3131
<groupId>software.amazon.s3.analyticsaccelerator</groupId>
3232
<artifactId>analyticsaccelerator-s3</artifactId>
33-
<version>1.0.0</version>
33+
<version>1.2.0</version>
3434
<scope>compile</scope>
3535
</dependency>
3636
```

input-stream/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import com.github.jk1.license.render.TextReportRenderer
1010

1111
val group = "software.amazon.s3.analyticsaccelerator"
1212
val artefact = "analyticsaccelerator-s3"
13-
val currentVersionNumber = "1.1.0"
13+
val currentVersionNumber = "1.2.0"
1414

1515
val isSnapshot = findProperty("snapshotBuild") == "true"
1616
val currentVersion = if (isSnapshot) "SNAPSHOT" else currentVersionNumber;

object-client/src/main/java/software/amazon/s3/analyticsaccelerator/request/UserAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public final class UserAgent {
2424
// Hard-coded user-agent string
2525
private static final String UA_STRING = "s3analyticsaccelerator";
2626

27-
private static final String VERSION_INFO = "1.1.0";
27+
private static final String VERSION_INFO = "1.2.0";
2828
/**
2929
* Disallowed characters in the user agent token: @see <a
3030
* href="https://tools.ietf.org/html/rfc7230#section-3.2.6">RFC 7230</a>

0 commit comments

Comments
 (0)