Skip to content

Commit

Permalink
Version 2.21.1-v2-21.1.02.00 release (#199)
Browse files Browse the repository at this point in the history
Co-authored-by: DevCenter-DocuSign <[email protected]>
  • Loading branch information
mmallis87 and DevCenter-DocuSign authored Jul 8, 2021
1 parent 79ac6b1 commit ddf9b66
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# DocuSign Java Client Changelog
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v2.21.1] - eSignature API v2.-21.1.02.00 - 2021-07-07
### Fixed
- Issue [`#194`](https://github.com/docusign/docusign-java-client/issues/194): Error Reading Entity from Input Stream. (DCM-5802)

## [v2.21.1-RC1] - eSignature API v2.-21.1.02.00 - 2021-05-28
### Fixed
- Issue [`#194`](https://github.com/docusign/docusign-java-client/issues/194): Error Reading Entity from Input Stream. (DCM-5802)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This SDK is provided as open source, which enables you to customize its function
<dependency>
<groupId>com.docusign</groupId>
<artifactId>docusign-esign-java</artifactId>
<version>2.21.1-RC1</version>
<version>2.21.1</version>
</dependency>
```
8. If your project is still open, restart Eclipse.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.docusign'
version = '2.21.1-RC1'
version = '2.21.1'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>docusign-esign-java</artifactId>
<packaging>jar</packaging>
<name>docusign-esign-java</name>
<version>2.21.1-RC1</version>
<version>2.21.1</version>
<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>
<url>https://developers.docusign.com</url>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/docusign/esign/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public ApiClient() {
this.dateFormat = new RFC3339DateFormat();

// Set default User-Agent.
setUserAgent("Swagger-Codegen/2.21.1-RC1/java");
setUserAgent("Swagger-Codegen/2.21.1/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down
6 changes: 2 additions & 4 deletions src/test/java/SdkUnitTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -1741,12 +1741,10 @@ public void GetFormDataTest() {
String accountId = userInfo.getAccounts().get(0).getAccountId();

EnvelopesApi envelopesApi = new EnvelopesApi();
String envelopeId = "137e8369-3242-438e-ab0f-4808ec6047cd";
String envelopeId = envelopeIds[0];
EnvelopeFormData envelopeFormData = envelopesApi.getFormData(accountId, envelopeId);
Assert.assertNotNull(envelopeFormData);
Assert.assertNotNull(envelopeFormData.getFormData());
Assert.assertNotNull(envelopeFormData.getFormData().get(0));
Assert.assertNotNull(envelopeFormData.getFormData().get(0).getName());
Assert.assertEquals(envelopeFormData.getEnvelopeId(), envelopeId);

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

0 comments on commit ddf9b66

Please sign in to comment.