This repository was archived by the owner on Apr 23, 2021. It is now read-only.
File tree 5 files changed +14
-10
lines changed
src/main/java/com/squareup/connect
5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## Version 2.20190508.1 (2019-05-28)
4
+
5
+ Bump Jackson dependency for Java SDK.
6
+
3
7
## Version 2.20190508.0 (2019-05-08)
4
8
5
9
## Details
62
66
## New API: Labor API
63
67
64
68
The Labor API now includes functionality
65
- that gives a Square account the ability to track and retrieve employee labor hours
66
- including multiple hourly wage rates per employee, work shift break tracking, and
69
+ that gives a Square account the ability to track and retrieve employee labor hours
70
+ including multiple hourly wage rates per employee, work shift break tracking, and
67
71
standardized break templates.
68
72
69
73
See the Connect v2 Technical Reference.
70
74
71
75
## New API: Employees API
72
76
73
- The Employees API includes the ability to list employees for a Square
77
+ The Employees API includes the ability to list employees for a Square
74
78
account and retrieve a single employee by ID.
75
79
76
80
See the Connect v2 Technical Reference.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
18
18
<dependency >
19
19
<groupId >com.squareup</groupId >
20
20
<artifactId >connect</artifactId >
21
- <version >2.20190508.0 </version >
21
+ <version >2.20190508.1 </version >
22
22
<scope >compile</scope >
23
23
</dependency >
24
24
```
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
28
28
Add this dependency to your project's build file:
29
29
30
30
``` groovy
31
- compile "com.squareup:connect:2.20190508.0 "
31
+ compile "com.squareup:connect:2.20190508.1 "
32
32
```
33
33
34
34
### Option 3: Build and Install locally
@@ -70,7 +70,7 @@ At first generate the JAR by executing:
70
70
71
71
Then manually install the following JARs:
72
72
73
- * target/connect-2.20190508.0 .jar
73
+ * target/connect-2.20190508.1 .jar
74
74
* target/lib/* .jar
75
75
76
76
## Getting Started
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'idea'
2
2
apply plugin : ' eclipse'
3
3
4
4
group = ' com.squareup'
5
- version = ' 2.20190508.0 '
5
+ version = ' 2.20190508.1 '
6
6
7
7
buildscript {
8
8
repositories {
Original file line number Diff line number Diff line change 5
5
<artifactId >connect</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >connect</name >
8
- <version >2.20190508.0 </version >
8
+ <version >2.20190508.1 </version >
9
9
<url >https://github.com/square/connect-java-sdk/</url >
10
10
<description >Java client library for the Square Connect API</description >
11
11
<scm >
311
311
<properties >
312
312
<swagger-core-version >1.5.12</swagger-core-version >
313
313
<jersey-version >2.22.2</jersey-version >
314
- <jackson-version >2.7.5 </jackson-version >
314
+ <jackson-version >2.9.9 </jackson-version >
315
315
<maven-plugin-version >1.0.0</maven-plugin-version >
316
316
<junit-version >4.12</junit-version >
317
317
</properties >
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public ApiClient() {
73
73
this .dateFormat = new RFC3339DateFormat ();
74
74
75
75
// Set default User-Agent.
76
- setUserAgent ("Square-Connect-Java/2.20190508.0 " );
76
+ setUserAgent ("Square-Connect-Java/2.20190508.1 " );
77
77
78
78
// Setup authentications (key: authentication name, value: authentication).
79
79
authentications = new HashMap <String , Authentication >();
You can’t perform that action at this time.
0 commit comments