Skip to content

Commit 4cbf9e8

Browse files
committed
Prepare for 1.0.0 release
Update classification badge Update dependency for simple-console Fix Maintained badge in README
1 parent 8550a50 commit 4cbf9e8

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

CHANGELOG

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Java 1.0.0 (2022-09-06)
2+
-----------------------
3+
Add close() to Emitter interface and Tracker (#357)
4+
Deprecate Builder classes (#355)
5+
Reduce the default maximum event buffer capacity (#352)
6+
Add admin workflow for automatic issue labelling (#346)
7+
Remove SimpleEmitter (#341)
8+
Add a Snowplow interface with the ability to initialize and manage multiple trackers (#340)
9+
Restore Emitter callbacks for success and failure (#339)
10+
Add a maximum wait time and jitter to event sending retry (#338)
11+
Set default HTTP status codes not to retry on (#337)
12+
Add support for storing cookies in OkHttpClientAdapter (#336)
13+
Remove Guava dependency (#320)
14+
Standardise API for Tracker and Subject Builders (#302)
15+
Rename Unstructured events to SelfDescribing (#296)
16+
117
Java 0.12.2 (2022-06-17)
218
-----------------------
319
Bump jackson-databind to 2.13.3 (#333)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Java Analytics for Snowplow
22

3-
[![early-release]][tracker-classification] [![Build][github-image]][github] [![Release][release-image]][releases] [![License][license-image]][license]
3+
[![maintained]][tracker-classification] [![Build][github-image]][github] [![Release][release-image]][releases] [![License][license-image]][license]
44

55
## Overview
66

@@ -88,4 +88,4 @@ limitations under the License.
8888
[apidocs]: https://snowplow.github.io/snowplow-java-tracker/index.html?overview-summary.html
8989

9090
[tracker-classification]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/tracker-maintenance-classification/
91-
[early-release]: https://img.shields.io/static/v1?style=flat&label=Snowplow&message=Early%20Release&color=014477&labelColor=9ba0aa&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAeFBMVEVMaXGXANeYANeXANZbAJmXANeUANSQAM+XANeMAMpaAJhZAJeZANiXANaXANaOAM2WANVnAKWXANZ9ALtmAKVaAJmXANZaAJlXAJZdAJxaAJlZAJdbAJlbAJmQAM+UANKZANhhAJ+EAL+BAL9oAKZnAKVjAKF1ALNBd8J1AAAAKHRSTlMAa1hWXyteBTQJIEwRgUh2JjJon21wcBgNfmc+JlOBQjwezWF2l5dXzkW3/wAAAHpJREFUeNokhQOCA1EAxTL85hi7dXv/E5YPCYBq5DeN4pcqV1XbtW/xTVMIMAZE0cBHEaZhBmIQwCFofeprPUHqjmD/+7peztd62dWQRkvrQayXkn01f/gWp2CrxfjY7rcZ5V7DEMDQgmEozFpZqLUYDsNwOqbnMLwPAJEwCopZxKttAAAAAElFTkSuQmCC
91+
[maintained]: https://img.shields.io/static/v1?style=flat&label=Snowplow&message=Maintained&color=9e62dd&labelColor=9ba0aa&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAeFBMVEVMaXGXANeYANeXANZbAJmXANeUANSQAM+XANeMAMpaAJhZAJeZANiXANaXANaOAM2WANVnAKWXANZ9ALtmAKVaAJmXANZaAJlXAJZdAJxaAJlZAJdbAJlbAJmQAM+UANKZANhhAJ+EAL+BAL9oAKZnAKVjAKF1ALNBd8J1AAAAKHRSTlMAa1hWXyteBTQJIEwRgUh2JjJon21wcBgNfmc+JlOBQjwezWF2l5dXzkW3/wAAAHpJREFUeNokhQOCA1EAxTL85hi7dXv/E5YPCYBq5DeN4pcqV1XbtW/xTVMIMAZE0cBHEaZhBmIQwCFofeprPUHqjmD/+7peztd62dWQRkvrQayXkn01f/gWp2CrxfjY7rcZ5V7DEMDQgmEozFpZqLUYDsNwOqbnMLwPAJEwCopZxKttAAAAAElFTkSuQmCC

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ wrapper.gradleVersion = '6.5.0'
2525

2626
group = 'com.snowplowanalytics'
2727
archivesBaseName = 'snowplow-java-tracker'
28-
version = '0.12.2'
28+
version = '1.0.0'
2929
sourceCompatibility = '1.8'
3030
targetCompatibility = '1.8'
3131

examples/simple-console/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ test {
1616
}
1717

1818
dependencies {
19-
implementation 'com.snowplowanalytics:snowplow-java-tracker:0.+'
19+
implementation 'com.snowplowanalytics:snowplow-java-tracker:1.+'
2020

21-
implementation ('com.snowplowanalytics:snowplow-java-tracker:0.+') {
21+
implementation ('com.snowplowanalytics:snowplow-java-tracker:1.+') {
2222
capabilities {
2323
requireCapability 'com.snowplowanalytics:snowplow-java-tracker-okhttp-support'
2424
}

src/test/java/com/snowplowanalytics/snowplow/tracker/TrackerTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ public void testCreateWithConfiguration() {
577577
@Test
578578
public void testGetTrackerVersion() {
579579
Tracker tracker = new Tracker(new TrackerConfiguration("namespace", "an-app-id"), mockEmitter);
580-
assertEquals("java-0.12.2", tracker.getTrackerVersion());
580+
assertEquals("java-1.0.0", tracker.getTrackerVersion());
581581
}
582582

583583
@Test

0 commit comments

Comments
 (0)