This repository was archived by the owner on Apr 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +14
-10
lines changed
src/main/java/com/squareup/connect Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## Version 2.20190508.1 (2019-05-28)
4+
5+ Bump Jackson dependency for Java SDK.
6+
37## Version 2.20190508.0 (2019-05-08)
48
59## Details
6266## New API: Labor API
6367
6468The 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
6771standardized break templates.
6872
6973See the Connect v2 Technical Reference.
7074
7175## New API: Employees API
7276
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
7478account and retrieve a single employee by ID.
7579
7680See 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:
1818<dependency >
1919 <groupId >com.squareup</groupId >
2020 <artifactId >connect</artifactId >
21- <version >2.20190508.0 </version >
21+ <version >2.20190508.1 </version >
2222 <scope >compile</scope >
2323</dependency >
2424```
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828Add this dependency to your project's build file:
2929
3030``` groovy
31- compile "com.squareup:connect:2.20190508.0 "
31+ compile "com.squareup:connect:2.20190508.1 "
3232```
3333
3434### Option 3: Build and Install locally
@@ -70,7 +70,7 @@ At first generate the JAR by executing:
7070
7171Then manually install the following JARs:
7272
73- * target/connect-2.20190508.0 .jar
73+ * target/connect-2.20190508.1 .jar
7474* target/lib/* .jar
7575
7676## Getting Started
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'idea'
22apply plugin : ' eclipse'
33
44group = ' com.squareup'
5- version = ' 2.20190508.0 '
5+ version = ' 2.20190508.1 '
66
77buildscript {
88 repositories {
Original file line number Diff line number Diff line change 55 <artifactId >connect</artifactId >
66 <packaging >jar</packaging >
77 <name >connect</name >
8- <version >2.20190508.0 </version >
8+ <version >2.20190508.1 </version >
99 <url >https://github.com/square/connect-java-sdk/</url >
1010 <description >Java client library for the Square Connect API</description >
1111 <scm >
311311 <properties >
312312 <swagger-core-version >1.5.12</swagger-core-version >
313313 <jersey-version >2.22.2</jersey-version >
314- <jackson-version >2.7.5 </jackson-version >
314+ <jackson-version >2.9.9 </jackson-version >
315315 <maven-plugin-version >1.0.0</maven-plugin-version >
316316 <junit-version >4.12</junit-version >
317317 </properties >
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public ApiClient() {
7373 this .dateFormat = new RFC3339DateFormat ();
7474
7575 // Set default User-Agent.
76- setUserAgent ("Square-Connect-Java/2.20190508.0 " );
76+ setUserAgent ("Square-Connect-Java/2.20190508.1 " );
7777
7878 // Setup authentications (key: authentication name, value: authentication).
7979 authentications = new HashMap <String , Authentication >();
You can’t perform that action at this time.
0 commit comments