Skip to content

Commit f6e0546

Browse files
authored
fix: upgrade to 0.0.8 and fix license and readme reference in python (#207)
1 parent 2ceb0fa commit f6e0546

31 files changed

Lines changed: 66 additions & 47 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,10 @@ jobs:
4848
- name: Install uv
4949
uses: astral-sh/setup-uv@v4
5050

51-
- name: Build lance-namespace-urllib3-client
52-
working-directory: python/lance_namespace_urllib3_client
51+
- name: Build module dists
52+
working-directory: python
5353
run: |
54-
uv build
55-
56-
- name: Build lance-namespace
57-
working-directory: python/lance_namespace
58-
run: |
59-
uv build
54+
make publish
6055
6156
- name: Publish to PyPI
6257
if: |

docs/src/impls/.pages

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ nav:
44
- REST: rest
55
- Directory: dir.md
66
- Apache Hive MetaStore: hive.md
7-
- AWS Glue: glue.md
7+
- AWS Glue: glue.md
8+
- Unity Catalog: unity.md

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.7
13+
VERSION = 0.0.8
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.7</version>
11+
<version>0.0.8</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.7</version>
54+
<version>0.0.8</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.7"
64+
compile "com.lancedb:lance-namespace-apache-client:0.0.8"
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.7.jar`
77+
- `target/lance-namespace-apache-client-0.0.8.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.7</version>
8+
<version>0.0.8</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.7</version>
19+
<version>0.0.8</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.7/java");
160+
setUserAgent("OpenAPI-Generator/0.0.8/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.7";
20+
public static final String VERSION = "0.0.8";
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.7</version>
11+
<version>0.0.8</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.7</version>
11+
<version>0.0.8</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

0 commit comments

Comments
 (0)