Skip to content

Commit a70e40c

Browse files
HobbyProjectsroot
andauthored
Version 3.17.0-RC1-v2.1-21.4.01.00 release (#224)
Co-authored-by: root <[email protected]>
1 parent 920d0a0 commit a70e40c

31 files changed

+2766
-139
lines changed

CHANGELOG.md

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

4+
## [v3.17.0-RC1] - eSignature API v2.1-21.4.01.00 - 2022-01-07
5+
### Changed
6+
- Added support for version v2.1-21.4.01.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
49
## [v3.16.1] - eSignature API v2.1-21.4.00.00 - 2021-12-16
510
### Changed
611
- Added support for version v2.1-21.4.00.00 of the DocuSign ESignature API.

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.16.1</version>
30+
<version>3.17.0-RC1</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.16.1'
5+
version = '3.17.0-RC1'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 20 additions & 3 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.16.1</version>
7+
<version>3.17.0-RC1</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

@@ -15,11 +15,11 @@
1515
<distributionManagement>
1616
<snapshotRepository>
1717
<id>ossrh</id>
18-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
18+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
1919
</snapshotRepository>
2020
<repository>
2121
<id>ossrh2</id>
22-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
22+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2323
</repository>
2424
</distributionManagement>
2525

@@ -125,6 +125,23 @@
125125
</goals>
126126
</execution>
127127
</executions>
128+
<configuration>
129+
<gpgArguments>
130+
<arg>--pinentry-mode</arg>
131+
<arg>loopback</arg>
132+
</gpgArguments>
133+
</configuration>
134+
</plugin>
135+
136+
<plugin>
137+
<groupId>org.sonatype.plugins</groupId>
138+
<artifactId>nexus-staging-maven-plugin</artifactId>
139+
<version>1.6.8</version>
140+
<configuration>
141+
<serverId>ossrh</serverId>
142+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
143+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
144+
</configuration>
128145
</plugin>
129146

130147
<plugin>

src/main/java/com/docusign/esign/api/BillingApi.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ public class GetPlanOptions
315315
private String includeDowngradeInformation = null;
316316
private String includeMetadata = null;
317317
private String includeSuccessorPlans = null;
318+
private String includeTaxExemptId = null;
318319

319320
/**
320321
* setIncludeCreditCardInformation method.
@@ -379,6 +380,22 @@ public void setIncludeSuccessorPlans(String includeSuccessorPlans) {
379380
public String getIncludeSuccessorPlans() {
380381
return this.includeSuccessorPlans;
381382
}
383+
384+
/**
385+
* setIncludeTaxExemptId method.
386+
*/
387+
public void setIncludeTaxExemptId(String includeTaxExemptId) {
388+
this.includeTaxExemptId = includeTaxExemptId;
389+
}
390+
391+
/**
392+
* getIncludeTaxExemptId method.
393+
*
394+
* @return String
395+
*/
396+
public String getIncludeTaxExemptId() {
397+
return this.includeTaxExemptId;
398+
}
382399
}
383400

384401
/**
@@ -425,6 +442,8 @@ public AccountBillingPlanResponse getPlan(String accountId, BillingApi.GetPlanOp
425442
localVarQueryParams.addAll(apiClient.parameterToPair("include_metadata", options.includeMetadata));
426443
}if (options != null) {
427444
localVarQueryParams.addAll(apiClient.parameterToPair("include_successor_plans", options.includeSuccessorPlans));
445+
}if (options != null) {
446+
localVarQueryParams.addAll(apiClient.parameterToPair("include_tax_exempt_id", options.includeTaxExemptId));
428447
}
429448

430449

0 commit comments

Comments
 (0)