Skip to content

Commit

Permalink
Prepare for 2.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Feb 14, 2024
1 parent edc2d23 commit b9636fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Java 2.1.0 (2024-02-14)
-----------------------
Add support for serializing DateTime in self-describing data (#378) (thanks to @stephen-murby for the contribution!)
Add equality functions for SelfDescribing and SelfDescribingJson so that they can be compared in unit tests (#380) (thanks to @stephen-murby for the contribution!)

Java 2.0.0 (2024-01-12)
-----------------------
Add builder methods Subject to allow method chaining (#303)
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 = '2.0.0'
version = '2.1.0'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ public void testCreateWithConfiguration() {
@Test
public void testGetTrackerVersion() {
Tracker tracker = new Tracker(new TrackerConfiguration("namespace", "an-app-id"), mockEmitter);
assertEquals("java-2.0.0", tracker.getTrackerVersion());
assertEquals("java-2.1.0", tracker.getTrackerVersion());
}

@Test
Expand Down

0 comments on commit b9636fd

Please sign in to comment.