Skip to content

Commit fa9b710

Browse files
chore: release version 0.0.19
1 parent 0242efc commit fa9b710

File tree

34 files changed

+43
-43
lines changed

34 files changed

+43
-43
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.0.18"
2+
current_version = "0.0.19"
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.0.18
13+
VERSION = 0.0.19
1414

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

java/lance-namespace-adapter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-namespace-root</artifactId>
11-
<version>0.0.18</version>
11+
<version>0.0.19</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

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>com.lancedb</groupId>
5353
<artifactId>lance-namespace-apache-client</artifactId>
54-
<version>0.0.18</version>
54+
<version>0.0.19</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 "com.lancedb:lance-namespace-apache-client:0.0.18"
64+
compile "com.lancedb:lance-namespace-apache-client:0.0.19"
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.0.18.jar`
77+
- `target/lance-namespace-apache-client-0.0.19.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.0.18</version>
8+
<version>0.0.19</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>com.lancedb</groupId>
1818
<artifactId>lance-namespace-root</artifactId>
19-
<version>0.0.18</version>
19+
<version>0.0.19</version>
2020
</parent>
2121

2222
<licenses>

java/lance-namespace-apache-client/src/main/java/com/lancedb/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.0.18/java");
160+
setUserAgent("OpenAPI-Generator/0.0.19/java");
161161

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

java/lance-namespace-apache-client/src/main/java/com/lancedb/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.0.18";
20+
public static final String VERSION = "0.0.19";
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
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-namespace-root</artifactId>
11-
<version>0.0.18</version>
11+
<version>0.0.19</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

java/lance-namespace-glue/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-namespace-root</artifactId>
11-
<version>0.0.18</version>
11+
<version>0.0.19</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

java/lance-namespace-hive2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-namespace-root</artifactId>
11-
<version>0.0.18</version>
11+
<version>0.0.19</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

0 commit comments

Comments
 (0)