Skip to content

Commit 4075ab9

Browse files
authored
Updates version to 1.1.0 (#267)
## Description of change Updates version to 1.1.0. #### Relevant issues <!-- Please add issue numbers. --> <!-- Please also link them to this PR. --> #### Does this contribution introduce any breaking changes to the existing APIs or behaviors? <!-- Please explain why this was necessary. --> #### Does this contribution introduce any new public APIs or behaviors? <!-- Please describe them and explain what scenarios they target. --> #### How was the contribution tested? <!-- Please describe how this contribution was tested. --> #### Does this contribution need a changelog entry? - [ ] 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 1ba2ab8 commit 4075ab9

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v1.1.0 (May 09, 2025)
2+
3+
* feat: Memory Manager https://github.com/awslabs/analytics-accelerator-s3/pull/251
4+
* feat: Added new metrics like memory usage and cache hit/miss https://github.com/awslabs/analytics-accelerator-s3/pull/257
5+
* feat: Read optimisations for sequential file formats https://github.com/awslabs/analytics-accelerator-s3/pull/238
6+
* Improved integration test documentation https://github.com/awslabs/analytics-accelerator-s3/pull/260
7+
* Added config to use format-specific LogicalIO implementations https://github.com/awslabs/analytics-accelerator-s3/pull/259
8+
* Reduced waiting time and retry on GrayTest https://github.com/awslabs/analytics-accelerator-s3/pull/256
9+
* fix: Failing ref tests https://github.com/awslabs/analytics-accelerator-s3/pull/255
10+
* fix: Setting log path for telemetry https://github.com/awslabs/analytics-accelerator-s3/pull/252
11+
* Added some debug logs https://github.com/awslabs/analytics-accelerator-s3/pull/250
12+
* Reduced default block read timeout to 30 seconds https://github.com/awslabs/analytics-accelerator-s3/pull/249
13+
* Enabled Iceberg unit-tests https://github.com/awslabs/analytics-accelerator-s3/pull/245
14+
115
## v1.0.0 (March 04, 2025)
216

317
* Adds retrying of block reads https://github.com/awslabs/analytics-accelerator-s3/pull/229

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.0.0"
13+
val currentVersionNumber = "1.1.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.0.0";
27+
private static final String VERSION_INFO = "1.1.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)