Skip to content

Commit 44e2cd4

Browse files
HobbyProjectsrootmmallis87
authored
Version 3.16.0-RC1 release (#216)
* Version 3.16.0-RC1-v2.1-21.3.02.00 release * Added javadoc config missing from last commit Co-authored-by: root <[email protected]> Co-authored-by: Majid Mallis <[email protected]>
1 parent 9e01628 commit 44e2cd4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+7106
-6004
lines changed

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.13-SNAPSHOT
1+
2.4.21-SNAPSHOT

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.16.0-RC1] - ESignature API v2.1-21.3.02.00 - 2021-10-29
5+
### Changed
6+
- Added support for version v2.1-21.3.02.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
### Added
9+
- Code linting.
10+
411
## [v3.15.0] - ESignature API v2.1-21.3.00.00 - 2021-09-29
512
### Changed
613
- Added support for version v2-21.3.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.15.0</version>
30+
<version>3.16.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.15.0'
5+
version = '3.16.0-RC1'
66

77
buildscript {
88
repositories {

checkstyle.xml

Lines changed: 328 additions & 0 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 5 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.15.0</version>
7+
<version>3.16.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

@@ -110,6 +110,8 @@
110110
</execution>
111111
</executions>
112112
<configuration>
113+
<source>1.9</source>
114+
<detectJavaApiLink>false</detectJavaApiLink>
113115
<additionalOptions>
114116
<additionalOption>-Xdoclint:none</additionalOption>
115117
</additionalOptions>
@@ -167,8 +169,8 @@
167169
<artifactId>maven-compiler-plugin</artifactId>
168170
<version>2.3.2</version>
169171
<configuration>
170-
<source>11</source>
171-
<target>11</target>
172+
<source>1.9</source>
173+
<target>1.9</target>
172174
</configuration>
173175
</plugin>
174176
</plugins>

0 commit comments

Comments
 (0)