Skip to content

Commit fe97796

Browse files
Minor version bump (#500)
1 parent 6710aae commit fe97796

48 files changed

Lines changed: 65 additions & 65 deletions

Some content is hidden

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

sdks/dotnet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ directory that corresponds to the file you want updated.
2323
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
2424

2525
- API version: 3.0.0
26-
- SDK version: 2.0-dev
26+
- SDK version: 2.1-dev
2727
- Generator version: 7.12.0
2828
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
2929

sdks/dotnet/VERSION

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

sdks/dotnet/openapi-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ additionalProperties:
66
packageCompany: Dropbox Sign API Team
77
packageCopyright: Dropbox 2024
88
packageDescription: Client library for using the Dropbox Sign API
9-
packageVersion: 2.0-dev
9+
packageVersion: 2.1-dev
1010
packageTitle: Dropbox Sign .Net SDK
1111
sortModelPropertiesByRequiredFlag: true
1212
optionalEmitDefaultValues: true

sdks/dotnet/src/Dropbox.Sign/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class Configuration : IReadableConfiguration
3636
/// Version of the package.
3737
/// </summary>
3838
/// <value>Version of the package.</value>
39-
public const string Version = "2.0-dev";
39+
public const string Version = "2.1-dev";
4040

4141
/// <summary>
4242
/// Identifier for ISO 8601 DateTime Format
@@ -120,7 +120,7 @@ public class Configuration : IReadableConfiguration
120120
public Configuration()
121121
{
122122
Proxy = null;
123-
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/2.0-dev/csharp");
123+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/2.1-dev/csharp");
124124
BasePath = "https://api.hellosign.com/v3";
125125
DefaultHeaders = new ConcurrentDictionary<string, string>();
126126
ApiKey = new ConcurrentDictionary<string, string>();
@@ -567,7 +567,7 @@ public static string ToDebugReport()
567567
report += " OS: " + System.Environment.OSVersion + "\n";
568568
report += " .NET Framework Version: " + System.Environment.Version + "\n";
569569
report += " Version of the API: 3.0.0\n";
570-
report += " SDK Package Version: 2.0-dev\n";
570+
report += " SDK Package Version: 2.1-dev\n";
571571

572572
return report;
573573
}

sdks/dotnet/src/Dropbox.Sign/Dropbox.Sign.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>Client library for using the Dropbox Sign API</Description>
1313
<Copyright>Dropbox 2024</Copyright>
1414
<RootNamespace>Dropbox.Sign</RootNamespace>
15-
<Version>2.0-dev</Version>
15+
<Version>2.1-dev</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Dropbox.Sign.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/hellosign/dropbox-sign-dotnet.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

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.9-dev</version>
58+
<version>1.10-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.9-dev"
74+
implementation "com.dropbox.sign:dropbox-sign:1.10-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.9-dev.jar`
88+
- `target/dropbox-sign-1.10-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.9-dev`
480+
- Package version: `1.10-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.9-dev
1+
1.10-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.9-dev'
24+
version = '1.10-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.9-dev",
5+
version := "1.10-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.9-dev
9+
VERSION_NAME=1.10-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!

0 commit comments

Comments
 (0)