Skip to content

Commit 537ea04

Browse files
Version 3.13.1-v2.1-21.1.02.00 release (#198)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent 9debfcc commit 537ea04

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

CHANGELOG.md

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

4+
## [v3.13.1] - eSignature API v2.1-21.1.02.00 - 2021-07-07
5+
### Fixed
6+
- Issue [`#194`](https://github.com/docusign/docusign-java-client/issues/194): Error Reading Entity from Input Stream. (DCM-5802)
7+
48
## [v3.13.1-RC1] - eSignature API v2.1-21.1.02.00 - 2021-05-28
59
### Fixed
610
- Issue [`#194`](https://github.com/docusign/docusign-java-client/issues/194): Error Reading Entity from Input Stream. (DCM-5802)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This SDK is provided as open source, which enables you to customize its function
2727
<dependency>
2828
<groupId>com.docusign</groupId>
2929
<artifactId>docusign-esign-java</artifactId>
30-
<version>3.13.1-RC1</version>
30+
<version>3.13.1</version>
3131
</dependency>
3232
```
3333
8. If your project is still open, restart Eclipse.

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.13.1-RC1'
5+
version = '3.13.1'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 2 additions & 2 deletions
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.13.1-RC1</version>
7+
<version>3.13.1</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

@@ -257,7 +257,7 @@
257257
<dependency>
258258
<groupId>org.bouncycastle</groupId>
259259
<artifactId>bcprov-jdk15on</artifactId>
260-
<version>1.60</version>
260+
<version>1.69</version>
261261
</dependency>
262262
<dependency>
263263
<groupId>com.fasterxml.jackson.dataformat</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public ApiClient() {
8484
this.dateFormat = new RFC3339DateFormat();
8585

8686
// Set default User-Agent.
87-
setUserAgent("Swagger-Codegen/3.13.1-RC1/java");
87+
setUserAgent("Swagger-Codegen/3.13.1/java");
8888

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

src/test/java/SdkUnitTests.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,12 +1703,10 @@ public void GetFormDataTest() {
17031703
String accountId = userInfo.getAccounts().get(0).getAccountId();
17041704

17051705
EnvelopesApi envelopesApi = new EnvelopesApi();
1706-
String envelopeId = "137e8369-3242-438e-ab0f-4808ec6047cd";
1706+
String envelopeId = envelopeIds[0];
17071707
EnvelopeFormData envelopeFormData = envelopesApi.getFormData(accountId, envelopeId);
17081708
Assert.assertNotNull(envelopeFormData);
1709-
Assert.assertNotNull(envelopeFormData.getFormData());
1710-
Assert.assertNotNull(envelopeFormData.getFormData().get(0));
1711-
Assert.assertNotNull(envelopeFormData.getFormData().get(0).getName());
1709+
Assert.assertEquals(envelopeFormData.getEnvelopeId(), envelopeId);
17121710

17131711
System.out.println("EnvelopeFormData: " + envelopeFormData);
17141712
} catch (ApiException ex) {

0 commit comments

Comments
 (0)