Skip to content

Commit e5e965b

Browse files
author
Lance Release Bot
committed
chore: release version 0.2.0
1 parent 2246254 commit e5e965b

File tree

26 files changed

+33
-33
lines changed

26 files changed

+33
-33
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.1.0"
2+
current_version = "0.2.0"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

java/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
1212

13-
VERSION = 0.1.0
13+
VERSION = 0.2.0
1414

1515
.PHONY: clean-apache-client
1616
clean-apache-client:

java/lance-namespace-apache-client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
<dependency>
5252
<groupId>org.lance</groupId>
5353
<artifactId>lance-namespace-apache-client</artifactId>
54-
<version>0.1.0</version>
54+
<version>0.2.0</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
6161
Add this dependency to your project's build file:
6262

6363
```groovy
64-
compile "org.lance:lance-namespace-apache-client:0.1.0"
64+
compile "org.lance:lance-namespace-apache-client:0.2.0"
6565
```
6666

6767
### Others
@@ -74,7 +74,7 @@ mvn clean package
7474

7575
Then manually install the following JARs:
7676

77-
- `target/lance-namespace-apache-client-0.1.0.jar`
77+
- `target/lance-namespace-apache-client-0.2.0.jar`
7878
- `target/lib/*.jar`
7979

8080
## Getting Started

java/lance-namespace-apache-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>lance-namespace-apache-client</artifactId>
66
<packaging>jar</packaging>
77
<name>lance-namespace-apache-client</name>
8-
<version>0.1.0</version>
8+
<version>0.2.0</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.lance</groupId>
1818
<artifactId>lance-namespace-root</artifactId>
19-
<version>0.1.0</version>
19+
<version>0.2.0</version>
2020
</parent>
2121

2222
<licenses>

java/lance-namespace-apache-client/src/main/java/org/lance/namespace/client/apache/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public ApiClient(CloseableHttpClient httpClient) {
157157
dateFormat = ApiClient.buildDefaultDateFormat();
158158

159159
// Set default User-Agent.
160-
setUserAgent("OpenAPI-Generator/0.1.0/java");
160+
setUserAgent("OpenAPI-Generator/0.2.0/java");
161161

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

java/lance-namespace-apache-client/src/main/java/org/lance/namespace/client/apache/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
value = "org.openapitools.codegen.languages.JavaClientCodegen",
1818
comments = "Generator version: 7.12.0")
1919
public class Configuration {
20-
public static final String VERSION = "0.1.0";
20+
public static final String VERSION = "0.2.0";
2121

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

java/lance-namespace-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.lance</groupId>
99
<artifactId>lance-namespace-root</artifactId>
10-
<version>0.1.0</version>
10+
<version>0.2.0</version>
1111
</parent>
1212

1313
<artifactId>lance-namespace-core</artifactId>

java/lance-namespace-springboot-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>lance-namespace-springboot-server</artifactId>
55
<packaging>jar</packaging>
66
<name>lance-namespace-springboot-server</name>
7-
<version>0.1.0</version>
7+
<version>0.2.0</version>
88
<properties>
99
<maven.compiler.release>17</maven.compiler.release>
1010
<springdoc.version>2.6.0</springdoc.version>
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.lance</groupId>
1515
<artifactId>lance-namespace-root</artifactId>
16-
<version>0.1.0</version>
16+
<version>0.2.0</version>
1717
</parent>
1818
<build>
1919
<sourceDirectory>src/main/java</sourceDirectory>

java/pom.xml

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

88
<groupId>org.lance</groupId>
99
<artifactId>lance-namespace-root</artifactId>
10-
<version>0.1.0</version>
10+
<version>0.2.0</version>
1111
<packaging>pom</packaging>
1212

1313
<name>${project.artifactId}</name>

java/springboot-server-pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>lance-namespace-springboot-server</artifactId>
55
<packaging>jar</packaging>
66
<name>lance-namespace-springboot-server</name>
7-
<version>0.1.0</version>
7+
<version>0.2.0</version>
88
<properties>
99
<maven.compiler.release>17</maven.compiler.release>
1010
<springdoc.version>2.6.0</springdoc.version>
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.lance</groupId>
1515
<artifactId>lance-namespace-root</artifactId>
16-
<version>0.1.0</version>
16+
<version>0.2.0</version>
1717
</parent>
1818
<build>
1919
<sourceDirectory>src/main/java</sourceDirectory>

0 commit comments

Comments
 (0)