Skip to content

Commit

Permalink
chore(release): 1.11.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.11.0](v1.10.0...v1.11.0) (2023-06-20)

### Bug Fixes

* fix failed unit tests due to async methods ([#74](#74)) ([026c3cc](026c3cc))
* handle non-json response bodies and retry on 5xx errors. ([#85](#85)) ([1d4567e](1d4567e))

### Features

* add ingestion_metadata field ([#78](#78)) ([727bb51](727bb51))
* add library context field ([#76](#76)) ([c874396](c874396))

### Reverts

* Revert "feat: add library context field (#76)" (#77) ([7d9e474](7d9e474)), closes [#76](#76) [#77](#77)
  • Loading branch information
amplitude-sdk-bot committed Jun 20, 2023
1 parent 42e0261 commit 69a7ca8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# [1.11.0](https://github.com/amplitude/Amplitude-Java/compare/v1.10.0...v1.11.0) (2023-06-20)


### Bug Fixes

* fix failed unit tests due to async methods ([#74](https://github.com/amplitude/Amplitude-Java/issues/74)) ([026c3cc](https://github.com/amplitude/Amplitude-Java/commit/026c3cc42f957272dfdef9522e9cd9ceac1c1b54))
* handle non-json response bodies and retry on 5xx errors. ([#85](https://github.com/amplitude/Amplitude-Java/issues/85)) ([1d4567e](https://github.com/amplitude/Amplitude-Java/commit/1d4567e9f5c0c19ca6e6245ec8e8731437e24bd2))


### Features

* add ingestion_metadata field ([#78](https://github.com/amplitude/Amplitude-Java/issues/78)) ([727bb51](https://github.com/amplitude/Amplitude-Java/commit/727bb51ba9d88060e4480e6260e29baea59194cd))
* add library context field ([#76](https://github.com/amplitude/Amplitude-Java/issues/76)) ([c874396](https://github.com/amplitude/Amplitude-Java/commit/c87439673ddcab22868cde8be53047b9a7d4dc31))


### Reverts

* Revert "feat: add library context field (#76)" (#77) ([7d9e474](https://github.com/amplitude/Amplitude-Java/commit/7d9e474ffcf292a9329015aadc17379b6bfe729c)), closes [#76](https://github.com/amplitude/Amplitude-Java/issues/76) [#77](https://github.com/amplitude/Amplitude-Java/issues/77)
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARTIFACT_VERSION=1.10.3
ARTIFACT_VERSION=1.11.0
ARTIFACT_GROUP=com.amplitude
POM_PACKAGING=jar
POM_DESCRIPTION=Amplitude Java SDK
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/amplitude/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface Constants {

int NETWORK_TIMEOUT_MILLIS = 10000;
String SDK_LIBRARY = "amplitude-java";
String SDK_VERSION = "1.10.3";
String SDK_VERSION = "1.11.0";

int MAX_PROPERTY_KEYS = 1024;
int MAX_STRING_LENGTH = 1000;
Expand Down

0 comments on commit 69a7ca8

Please sign in to comment.