Skip to content

Commit 92aa735

Browse files
Version 3.8.0-v2.1-20.2.02.02 release (#161)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent 6a35fbf commit 92aa735

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ jdk:
2323
script: mvn -X clean test
2424

2525
after_failure: "cat /home/travis/build/docusign/docusign-java-client/target/surefire-reports/SdkUnitTests.txt && cat /home/travis/build/docusign/docusign-java-client/target/surefire-reports/TEST-SdkUnitTests.xml"
26+

CHANGELOG.md

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

4+
## [3.8.0] - Jersey2 with support of DELETE request body - 2020-08-21
5+
### Changed
6+
- Upgraded the HTTP client from Jersey1 to Jersey 2. This resulted in a non-breaking change but the dependency list has largely been changed. (DCM-3324)
7+
- Added support for request body in all DELETE methods. (DCM-4454)
8+
- Added support for version v2.1-20.2.02 of the DocuSign eSignature API.
9+
- Updated the SDK release version.
10+
411
## [3.8.0-BETA] - Jersey2 with support of DELETE request body - 2020-08-11
512
### Changed
613
- Upgraded the HTTP client from Jersey1 to Jersey 2. This resulted in a non-breaking change but the dependency list has largely been changed. (DCM-3324)

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>3.8.0-BETA</version>
37+
<version>3.8.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 = '3.8.0-BETA'
5+
version = '3.8.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>3.8.0-BETA</version>
7+
<version>3.8.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://developers.docusign.com</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
@@ -87,7 +87,7 @@ public ApiClient() {
8787
this.dateFormat = new RFC3339DateFormat();
8888

8989
// Set default User-Agent.
90-
setUserAgent("Swagger-Codegen/3.8.0-BETA/java");
90+
setUserAgent("Swagger-Codegen/3.8.0/java");
9191

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

0 commit comments

Comments
 (0)