Skip to content

Commit ae9ef88

Browse files
committed
fix: observe PEP 625
1 parent e5958d7 commit ae9ef88

21 files changed

Lines changed: 29 additions & 29 deletions

File tree

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.19</version>
43+
<version>2.0.20</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.19"
53+
compile "io.cloudsmith.api:cloudsmith-api:2.0.20"
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.19.jar`
66+
* `target/cloudsmith-api-2.0.20.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.19'
5+
version = '2.0.20'
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.19",
6+
"artifactVersion": "2.0.20",
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.19",
5+
version := "2.0.20",
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.19</version>
8+
<version>2.0.20</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.19/java");
90+
setUserAgent("Swagger-Codegen/2.0.20/java");
9191

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

bindings/java/src/src/main/java/io/cloudsmith/api/models/StatusBasic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class StatusBasic implements Serializable {
3838
private String detail = "Cloudsmith API is operational.";
3939

4040
@SerializedName("version")
41-
private String version = "1.703.0";
41+
private String version = "1.704.1";
4242

4343
/**
4444
* The message describing the state of the API.

bindings/python/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cat > $build_json <<EOC
1717
{
1818
"hideGenerationTimestamp": $hide_generation_timestamp,
1919
"packageName": "$project_underscore",
20-
"projectName": "$project_dash",
20+
"projectName": "$project_underscore",
2121
"packageVersion": "$package_version",
2222
"packageUrl": "$openapi_url",
2323
"sortParamsByRequiredFlag": $sort_params

bindings/python/src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# cloudsmith-api
1+
# cloudsmith_api
22
The API to the Cloudsmith Service
33

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.19
7+
- Package version: 2.0.20
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"hideGenerationTimestamp": true,
33
"packageName": "cloudsmith_api",
4-
"projectName": "cloudsmith-api",
5-
"packageVersion": "2.0.19",
4+
"projectName": "cloudsmith_api",
5+
"packageVersion": "2.0.20",
66
"packageUrl": "https://api.cloudsmith.io/?format=openapi",
77
"sortParamsByRequiredFlag": true
88
}

0 commit comments

Comments
 (0)