Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 6b68d97

Browse files
Merge pull request #69 from square/release/2.20190508.1
Release 2.20190508.1
2 parents 6970107 + c3401e2 commit 6b68d97

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGES.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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
@@ -62,15 +66,15 @@
6266
## New API: Labor API
6367

6468
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
6771
standardized break templates.
6872

6973
See 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
7478
account and retrieve a single employee by ID.
7579

7680
See the Connect v2 Technical Reference.

README.md

+3-3
Original file line numberDiff line numberDiff 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:
2828
Add 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

7171
Then 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

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.squareup'
5-
version = '2.20190508.0'
5+
version = '2.20190508.1'
66

77
buildscript {
88
repositories {

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
@@ -311,7 +311,7 @@
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>

src/main/java/com/squareup/connect/ApiClient.java

+1-1
Original file line numberDiff line numberDiff 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>();

0 commit comments

Comments
 (0)