Skip to content

Commit 3656056

Browse files
Merge main -> oas-release (#489)
2 parents 53e37e0 + c8b39cb commit 3656056

44 files changed

Lines changed: 62 additions & 63 deletions

Some content is hidden

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

copy-sdks

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ function copy_files()
126126
elif [[ "${SDK}" == "java-v2" ]] || [[ "${SDK}" == "java-v1" ]]; then
127127
cp -r "${DIR}/examples/"*.java "${SDK_DIR}/examples/"
128128
elif [[ "${SDK}" == "node" ]]; then
129-
cp -r "${DIR}/examples/"*.js "${SDK_DIR}/examples/"
130129
cp -r "${DIR}/examples/"*.ts "${SDK_DIR}/examples/"
131130
elif [[ "${SDK}" == "php" ]]; then
132131
cp -r "${DIR}/examples/"*.php "${SDK_DIR}/examples/"

sdks/java-v1/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.8.1-dev</version>
58+
<version>1.9-dev</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.8.1-dev"
74+
implementation "com.dropbox.sign:dropbox-sign:1.9-dev"
7575
}
7676
```
7777

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

8686
Then manually install the following JARs:
8787

88-
- `target/dropbox-sign-1.8.1-dev.jar`
88+
- `target/dropbox-sign-1.9-dev.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.8.1-dev`
480+
- Package version: `1.9-dev`
481481
- Build package: `org.openapitools.codegen.languages.JavaClientCodegen`
482482

483483

sdks/java-v1/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.1-dev
1+
1.9-dev

sdks/java-v1/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'signing'
2121

2222
group = 'com.dropbox.sign'
2323
archivesBaseName = 'dropbox-sign'
24-
version = '1.8.1-dev'
24+
version = '1.9-dev'
2525
sourceCompatibility = JavaVersion.VERSION_1_8
2626
targetCompatibility = JavaVersion.VERSION_1_8
2727

sdks/java-v1/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.8.1-dev",
5+
version := "1.9-dev",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

sdks/java-v1/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.8.1-dev
9+
VERSION_NAME=1.9-dev
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!

sdks/java-v1/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.8.1-dev"
19+
artifactVersion: "1.9-dev"
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

sdks/java-v1/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.8.1-dev</version>
8+
<version>1.9-dev</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>

sdks/java-v1/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.8.1-dev/java");
150+
setUserAgent("OpenAPI-Generator/1.9-dev/java");
151151

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

sdks/java-v1/src/main/java/com/dropbox/sign/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
value = "org.openapitools.codegen.languages.JavaClientCodegen",
1717
comments = "Generator version: 7.12.0")
1818
public class Configuration {
19-
public static final String VERSION = "1.8.1-dev";
19+
public static final String VERSION = "1.9-dev";
2020

2121
private static volatile ApiClient defaultApiClient = new ApiClient();
2222

0 commit comments

Comments
 (0)