Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mhadam committed Jan 2, 2019
1 parent d401411 commit a320f24
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Java 0.8.3 (2019-01-02)
-----------------------
Change some info statements to debug (#202)
Change `slf4j-simple` to a test runtime dependency (#188)
Close ResponseBody (#195)
Use UTF-8 encoding in events (#181)
Make tracker exit cleanly (#187)
Add simple-console sample project (#191)
Fix README.md formatting (#190)
Remove JDK7 and add OpenJDK8 in Travis build matrix (#205)
Change sourceCompatibility and targetCompatibility to 1.8 (#204)
Update Gradle to 5.0 (#203)
Add Java 11 to Travis build matrix (#207)

Java 0.8.2 (2016-02-28)
-----------------------
Fixed GET requests not being properly encoded (#174)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-idea'

group = 'com.snowplowanalytics'
version = '0.8.2'
version = '0.8.3'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

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

@Test
Expand Down

0 comments on commit a320f24

Please sign in to comment.