Skip to content

Commit e6f3b7f

Browse files
committed
Version 2.12.0 release
+ Changed JDK versions for TravisCI as older versions reached EOL
1 parent 22bc412 commit e6f3b7f

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ notifications:
1616
on_failure: change
1717

1818
jdk:
19-
- oraclejdk8
20-
- openjdk7
19+
- oraclejdk9
20+
- oraclejdk11
2121

2222
script: mvn -X clean test
2323

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# DocuSign Java Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v2.12.0] - eSignature API v2-19.2.02 - 2019-10-08
5+
### Changed
6+
- The SDK now supports version 19.2.02 of the DocuSign eSignature v2 API.
7+
- SDK Release Version updated.
8+
- Changed JDK versions for TravisCI as older versions reached EOL.
9+
## Fixed
10+
- Issue [`#55`](https://github.com/docusign/docusign-java-client/issues/55): Unable to revoke OAuth token. (DCM-2926)
11+
- requestJWTUserToken does not give error response in exception. (DCM-3410)
12+
413
## [v2.12.0-RC1] - eSignature API v2-19.2.02 - 2019-08-29
514
### Changed
615
- The SDK now supports version 19.2.02 of the DocuSign eSignature v2 API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Note: DocuSign uses **Eclipse** with **Maven** for testing purposes.
3434
<dependency>
3535
<groupId>com.docusign</groupId>
3636
<artifactId>docusign-esign-java</artifactId>
37-
<version>2.12.0-RC1</version>
37+
<version>2.12.0</version>
3838
</dependency>
3939
```
4040

build.gradle

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

44
group = 'com.docusign'
5-
version = '2.12.0-RC1'
5+
version = '2.12.0'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>docusign-esign-java</artifactId>
55
<packaging>jar</packaging>
66
<name>docusign-esign-java</name>
7-
<version>2.12.0-RC1</version>
7+
<version>2.12.0</version>
88
<description>The official DocuSign eSignature JAVA client is based on version 2 of the DocuSign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>
99
<url>https://www.docusign.com/developer-center</url>
1010

src/main/java/com/docusign/esign/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public ApiClient() {
126126
mapper.setDateFormat((DateFormat) dateFormat.clone());
127127

128128
// Set default User-Agent.
129-
setUserAgent("Swagger-Codegen/2.12.0-RC1/java");
129+
setUserAgent("Swagger-Codegen/2.12.0/java");
130130

131131
// Setup authentications (key: authentication name, value: authentication).
132132
authentications = new HashMap<String, Authentication>();

0 commit comments

Comments
 (0)