Skip to content

Commit 41f691c

Browse files
Merge pull request #54 from hellosign/release-1.13.0
Release 1.13.0
2 parents 8198e67 + e231da5 commit 41f691c

12 files changed

Lines changed: 77 additions & 14 deletions

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add this dependency to your project's POM:
5555
<dependency>
5656
<groupId>com.dropbox.sign</groupId>
5757
<artifactId>dropbox-sign</artifactId>
58-
<version>1.12.0</version>
58+
<version>1.13.0</version>
5959
<scope>compile</scope>
6060
</dependency>
6161
```
@@ -71,7 +71,7 @@ Add this dependency to your project's build file:
7171
}
7272
7373
dependencies {
74-
implementation "com.dropbox.sign:dropbox-sign:1.12.0"
74+
implementation "com.dropbox.sign:dropbox-sign:1.13.0"
7575
}
7676
```
7777

@@ -85,7 +85,7 @@ mvn clean package
8585

8686
Then manually install the following JARs:
8787

88-
- `target/dropbox-sign-1.12.0.jar`
88+
- `target/dropbox-sign-1.13.0.jar`
8989
- `target/lib/*.jar`
9090

9191
## Getting Started
@@ -477,7 +477,7 @@ apisupport@hellosign.com
477477
This Java package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
478478

479479
- API version: `3.0.0`
480-
- Package version: `1.12.0`
480+
- Package version: `1.13.0`
481481
- Build package: `org.openapitools.codegen.languages.JavaClientCodegen`
482482

483483

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.0
1+
1.13.0

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.dropbox.sign'
10-
version = '1.12.0'
10+
version = '1.13.0'
1111

1212
base {
1313
archivesName.set('dropbox-sign')

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.dropbox.sign",
44
name := "dropbox-sign",
5-
version := "1.12.0",
5+
version := "1.13.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/TemplateResponseDocumentFormFieldDropdown.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This class extends `TemplateResponseDocumentFormFieldBase`
1010
|------------ | ------------- | ------------- | -------------|
1111
| `type`<sup>*_required_</sup> | ```String``` | The type of this form field. See [field types](/api/reference/constants/#field-types).<br><br>* Text Field uses `TemplateResponseDocumentFormFieldText`<br>* Dropdown Field uses `TemplateResponseDocumentFormFieldDropdown`<br>* Hyperlink Field uses `TemplateResponseDocumentFormFieldHyperlink`<br>* Checkbox Field uses `TemplateResponseDocumentFormFieldCheckbox`<br>* Radio Field uses `TemplateResponseDocumentFormFieldRadio`<br>* Signature Field uses `TemplateResponseDocumentFormFieldSignature`<br>* Date Signed Field uses `TemplateResponseDocumentFormFieldDateSigned`<br>* Initials Field uses `TemplateResponseDocumentFormFieldInitials` | |
1212
| `group` | ```String``` | The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. | |
13+
| `options` | ```List<String>``` | The options available for this dropdown form field. | |
1314

1415

1516

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#target = android
77
GROUP=com.dropbox.sign
88
POM_ARTIFACT_ID=dropbox-sign
9-
VERSION_NAME=1.12.0
9+
VERSION_NAME=1.13.0
1010

1111
POM_NAME=Dropbox Sign Java SDK
1212
POM_DESCRIPTION=Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!

openapi-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ additionalProperties:
1616
groupId: com.dropbox.sign
1717
artifactId: dropbox-sign
1818
artifactName: Dropbox Sign Java SDK
19-
artifactVersion: "1.12.0"
19+
artifactVersion: "1.13.0"
2020
artifactUrl: https://github.com/hellosign/dropbox-sign-java
2121
artifactDescription: Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!
2222
scmConnection: scm:git:git://github.com/hellosign/dropbox-sign-java.git

openapi-sdk.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13104,6 +13104,11 @@ components:
1310413104
description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
1310513105
type: string
1310613106
nullable: true
13107+
options:
13108+
description: 'The options available for this dropdown form field.'
13109+
type: array
13110+
items:
13111+
type: string
1310713112
type: object
1310813113
TemplateResponseDocumentFormFieldHyperlink:
1310913114
description: 'This class extends `TemplateResponseDocumentFormFieldBase`'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>dropbox-sign</artifactId>
66
<packaging>jar</packaging>
77
<name>dropbox-sign</name>
8-
<version>1.12.0</version>
8+
<version>1.13.0</version>
99
<url>https://github.com/hellosign/dropbox-sign-java</url>
1010
<description>Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!</description>
1111
<scm>

src/main/java/com/dropbox/sign/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public ApiClient(Map<String, Authentication> authMap) {
147147
this.dateFormat = new RFC3339DateFormat();
148148

149149
// Set default User-Agent.
150-
setUserAgent("OpenAPI-Generator/1.12.0/java");
150+
setUserAgent("OpenAPI-Generator/1.13.0/java");
151151

152152
// Setup authentications (key: authentication name, value: authentication).
153153
authentications = new HashMap<>();

0 commit comments

Comments
 (0)