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.
10
10
11
11
See the next sections for more information on how to use the Segment Public API Java SDK.
12
12
13
- Latest API and SDK version: 58.11 .0
13
+ Latest API and SDK version: 58.12 .0
14
14
15
15
## Requirements
16
16
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
28
28
<dependency >
29
29
<groupId >com.segment.publicapi</groupId >
30
30
<artifactId >segment-publicapi</artifactId >
31
- <version >58.11 .0</version >
31
+ <version >58.12 .0</version >
32
32
<scope >compile</scope >
33
33
</dependency >
34
34
```
@@ -44,7 +44,7 @@ Add this dependency to your project's build file:
44
44
}
45
45
46
46
dependencies {
47
- implementation "com.segment.publicapi:segment-publicapi:58.11 .0"
47
+ implementation "com.segment.publicapi:segment-publicapi:58.12 .0"
48
48
}
49
49
```
50
50
@@ -58,7 +58,7 @@ mvn clean package
58
58
59
59
Then manually install the following JARs:
60
60
61
- * ` target/segment-publicapi-58.11 .0.jar `
61
+ * ` target/segment-publicapi-58.12 .0.jar `
62
62
* ` target/lib/*.jar `
63
63
64
64
You are now ready to start making calls to Public API!
Original file line number Diff line number Diff line change 5
5
<artifactId >segment-publicapi</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >segment-publicapi</name >
8
- <version >58.11 .0</version >
8
+ <version >58.12 .0</version >
9
9
<url >https://segment.com/docs/api/public-api/</url >
10
10
<description >Segment Public API</description >
11
11
<scm >
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ private void init() {
123
123
json = new JSON ();
124
124
125
125
// Set default User-Agent.
126
- setUserAgent ("Public API SDK 58.11 .0 (Java)" );
126
+ setUserAgent ("Public API SDK 58.12 .0 (Java)" );
127
127
128
128
authentications = new HashMap <String , Authentication >();
129
129
}
Original file line number Diff line number Diff line change 12
12
package com .segment .publicapi ;
13
13
14
14
public class Configuration {
15
- public static final String VERSION = "58.11 .0" ;
15
+ public static final String VERSION = "58.12 .0" ;
16
16
17
17
private static ApiClient defaultApiClient = new ApiClient ();
18
18
You can’t perform that action at this time.
0 commit comments