Skip to content

Commit 870cfdb

Browse files
authored
feat: update bindings to v2.0.24 (#86)
1 parent 0e976a1 commit 870cfdb

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
lines changed

bindings/java/src/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>io.cloudsmith.api</groupId>
4242
<artifactId>cloudsmith-api</artifactId>
43-
<version>2.0.23</version>
43+
<version>2.0.24</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "io.cloudsmith.api:cloudsmith-api:2.0.23"
53+
compile "io.cloudsmith.api:cloudsmith-api:2.0.24"
5454
```
5555

5656
### Others
@@ -63,7 +63,7 @@ mvn clean package
6363

6464
Then manually install the following JARs:
6565

66-
* `target/cloudsmith-api-2.0.23.jar`
66+
* `target/cloudsmith-api-2.0.24.jar`
6767
* `target/lib/*.jar`
6868

6969
## Getting Started

bindings/java/src/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 = 'io.cloudsmith.api'
5-
version = '2.0.23'
5+
version = '2.0.24'
66

77
buildscript {
88
repositories {

bindings/java/src/build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"apiPackage": "io.cloudsmith.api.apis",
44
"artifactId": "cloudsmith-api",
55
"artifactUrl": "https://api.cloudsmith.io/?format=openapi",
6-
"artifactVersion": "2.0.23",
6+
"artifactVersion": "2.0.24",
77
"artifactDescription": "Cloudsmith API",
88
"dateLibrary": "java8",
99
"developerName": "Cloudsmith Ltd",

bindings/java/src/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 := "io.cloudsmith.api",
44
name := "cloudsmith-api",
5-
version := "2.0.23",
5+
version := "2.0.24",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

bindings/java/src/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>cloudsmith-api</artifactId>
66
<packaging>jar</packaging>
77
<name>cloudsmith-api</name>
8-
<version>2.0.23</version>
8+
<version>2.0.24</version>
99
<url>https://api.cloudsmith.io/?format&#x3D;openapi</url>
1010
<description>Cloudsmith API</description>
1111
<scm>

bindings/java/src/src/main/java/io/cloudsmith/api/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public ApiClient() {
8787
json = new JSON();
8888

8989
// Set default User-Agent.
90-
setUserAgent("Swagger-Codegen/2.0.23/java");
90+
setUserAgent("Swagger-Codegen/2.0.24/java");
9191

9292
// Setup authentications (key: authentication name, value: authentication).
9393
authentications = new HashMap<String, Authentication>();

bindings/python/src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The API to the Cloudsmith Service
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: v1
7-
- Package version: 2.0.23
7+
- Package version: 2.0.24
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://help.cloudsmith.io](https://help.cloudsmith.io)
1010

bindings/python/src/build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"hideGenerationTimestamp": true,
33
"packageName": "cloudsmith_api",
44
"projectName": "cloudsmith_api",
5-
"packageVersion": "2.0.23",
5+
"packageVersion": "2.0.24",
66
"packageUrl": "https://api.cloudsmith.io/?format=openapi",
77
"sortParamsByRequiredFlag": true
88
}

bindings/python/src/cloudsmith_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474
self.default_headers[header_name] = header_value
7575
self.cookie = cookie
7676
# Set default User-Agent.
77-
self.user_agent = 'Swagger-Codegen/2.0.23/python'
77+
self.user_agent = 'Swagger-Codegen/2.0.24/python'
7878
self.client_side_validation = configuration.client_side_validation
7979

8080
def __del__(self):

bindings/python/src/cloudsmith_api/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def to_debug_report(self):
249249
"OS: {env}\n"\
250250
"Python Version: {pyversion}\n"\
251251
"Version of the API: v1\n"\
252-
"SDK Package Version: 2.0.23".\
252+
"SDK Package Version: 2.0.24".\
253253
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)