Skip to content

Commit

Permalink
Prepare for 0.12.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed May 11, 2022
1 parent 724b4d3 commit 54f061e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Java 0.12.1 (2022-05-11)
-----------------------
Bump junit to 4.13.2 (#330)
Bump mockwebserver to 4.9.3 (#329)
Bump junit-jupiter-api to 5.8.2 (#328)
Bump guava to 31.1-jre (#327)
Bump jackson-databind to 2.13.2.2 (#326)
Bump slf4j-simple to 1.7.36 (#325)
Bump slf4j-api to 1.7.36 (#324)
Bump okhttp to 4.9.3 (#323)
Bump httpasyncclient to 4.1.5 (#322)
Bump commons-codec to 1.15 (#321)

Java 0.12.0 (2022-03-24)
-----------------------
Choose HTTP response codes not to retry (#316)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ wrapper.gradleVersion = '6.5.0'

group = 'com.snowplowanalytics'
archivesBaseName = 'snowplow-java-tracker'
version = '0.12.0'
version = '0.12.1'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ public void testTrackTimingWithSubject() throws InterruptedException {
@Test
public void testGetTrackerVersion() {
Tracker tracker = new Tracker.TrackerBuilder(mockEmitter, "namespace", "an-app-id").build();
assertEquals("java-0.12.0", tracker.getTrackerVersion());
assertEquals("java-0.12.1", tracker.getTrackerVersion());
}

@Test
Expand Down

0 comments on commit 54f061e

Please sign in to comment.