Skip to content

Commit d18b1e5

Browse files
authored
Merge pull request #5 from docusign/1.1.0-v2.1-1.1.0
Version 1.1.0 release
2 parents 2914b20 + 63a0593 commit d18b1e5

File tree

134 files changed

+13320
-7712
lines changed

Some content is hidden

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

134 files changed

+13320
-7712
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

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jdk:
2020
- oraclejdk12
2121
- oraclejdk13
2222

23-
script: mvn -X clean test
23+
script: mvn clean test
2424

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

27+
cache:
28+
directories:
29+
- $HOME/.m2

CHANGELOG.md

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

4+
## [v1.1.0] - Admin API v2.1-1.1.0 - 2022-04-26
5+
### Changed
6+
- Added support for version v2.1-1.1.0 of the DocuSign Admin API.
7+
- Updated the SDK release version.
8+
49
## [v1.0.0-BETA] - Admin API v2.1-1.0.0 - 2021-08-30
510
### Changed
611
- Updated the SDK release version.

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Note: DocuSign uses **Eclipse** with **Maven** for testing purposes.
3535
<dependency>
3636
<groupId>com.docusign</groupId>
3737
<artifactId>docusign-admin-java</artifactId>
38-
<version>1.0.0-BETA</version>
38+
<version>1.1.0</version>
3939
</dependency>
4040
```
4141

@@ -52,8 +52,6 @@ This client has the following external dependencies:
5252
- com.fasterxml.jackson.core:jackson-core:jar:2.10.1
5353
- com.fasterxml.jackson.core:jackson-annotations:jar:2.10.1
5454
- com.fasterxml.jackson.core:jackson-databind:2.10.1
55-
- com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.10.1
56-
- com.brsanthu:migbase64:2.2
5755
- junit:junit:jar:4.12
5856
- com.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2
5957
- com.auth0:java-jwt:3.4.1

build.gradle

Lines changed: 2 additions & 4 deletions
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 = '1.0.0-BETA'
5+
version = '1.1.0'
66

77
buildscript {
88
repositories {
@@ -93,7 +93,7 @@ if(hasProperty('target') && target == 'android') {
9393
main = System.getProperty('mainClass')
9494
classpath = sourceSets.main.runtimeClasspath
9595
}
96-
96+
9797
task sourcesJar(type: Jar, dependsOn: classes) {
9898
classifier = 'sources'
9999
from sourceSets.main.allSource
@@ -133,8 +133,6 @@ dependencies {
133133
compile "com.fasterxml.jackson.core:jackson-core:$jackson_version"
134134
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
135135
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
136-
compile "com.fasterxml.jackson.datatype:jackson-datatype-joda:$jackson_version"
137-
compile "com.brsanthu:migbase64:2.2"
138136
testCompile "junit:junit:$junit_version"
139137
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
140138
compile "com.auth0:java-jwt:$jwt_version"

0 commit comments

Comments
 (0)