File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
src/main/java/com/segment/publicapi Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ All endpoints in the API follow REST conventions and use standard HTTP methods.
1010
1111See the next sections for more information on how to use the Segment Public API Java SDK.
1212
13- Latest API and SDK version: 61.1.1
13+ Latest API and SDK version: 61.1.2
1414
1515## Requirements
1616
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828<dependency >
2929 <groupId >com.segment.publicapi</groupId >
3030 <artifactId >segment-publicapi</artifactId >
31- <version >61.1.1 </version >
31+ <version >61.1.2 </version >
3232 <scope >compile</scope >
3333</dependency >
3434```
@@ -44,7 +44,7 @@ Add this dependency to your project's build file:
4444 }
4545
4646 dependencies {
47- implementation "com.segment.publicapi:segment-publicapi:61.1.1 "
47+ implementation "com.segment.publicapi:segment-publicapi:61.1.2 "
4848 }
4949```
5050
@@ -58,7 +58,7 @@ mvn clean package
5858
5959Then manually install the following JARs:
6060
61- * ` target/segment-publicapi-61.1.1 .jar `
61+ * ` target/segment-publicapi-61.1.2 .jar `
6262* ` target/lib/*.jar `
6363
6464You are now ready to start making calls to Public API!
Original file line number Diff line number Diff line change 55 <artifactId >segment-publicapi</artifactId >
66 <packaging >jar</packaging >
77 <name >segment-publicapi</name >
8- <version >61.1.1 </version >
8+ <version >61.1.2 </version >
99 <url >https://segment.com/docs/api/public-api/</url >
1010 <description >Segment Public API</description >
1111 <scm >
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ private void init() {
123123 json = new JSON ();
124124
125125 // Set default User-Agent.
126- setUserAgent ("Public API SDK 61.1.1 (Java)" );
126+ setUserAgent ("Public API SDK 61.1.2 (Java)" );
127127
128128 authentications = new HashMap <String , Authentication >();
129129 }
Original file line number Diff line number Diff line change 1212package com .segment .publicapi ;
1313
1414public class Configuration {
15- public static final String VERSION = "61.1.1 " ;
15+ public static final String VERSION = "61.1.2 " ;
1616
1717 private static ApiClient defaultApiClient = new ApiClient ();
1818
You can’t perform that action at this time.
0 commit comments