Skip to content

Commit 5e4cee1

Browse files
Merge pull request #35 from griddb/5.9-rc
Update for 5.9
2 parents 1bd8d77 + 100fcff commit 5e4cee1

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GridDB Python Client
22

33
## Overview
44

5-
GridDB Python Client has been renewed.
5+
GridDB Python Client has been renewed in V5.8.
66

77
New GridDB Python Client is developed using GridDB Java API(Java Client), [JPype](https://github.com/jpype-project/jpype) and [Apache Arrow](https://arrow.apache.org/).
88

@@ -13,8 +13,8 @@ Building of the library and execution of the sample programs have been checked i
1313
OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
1414
Python: 3.12
1515
Java: 8
16-
GridDB Java API: V5.8 CE
17-
GridDB server: V5.8 CE, Ubuntu 22.04 (x64)
16+
GridDB Java API: V5.9 CE
17+
GridDB server: V5.9 CE, Ubuntu 22.04 (x64)
1818

1919
## QuickStart
2020

@@ -52,7 +52,7 @@ $ cd sample
5252
1. Download GridDB Java API on sample folder
5353

5454
```sh
55-
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8.0/gridstore-5.8.0.jar
55+
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9.0/gridstore-5.9.0.jar
5656
```
5757

5858
2. Place GridDB JavaAPI Adapter for Apache Arrow on sample folder

README_ja.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GridDB Pythonクライアント
22

33
## 概要
44

5-
GridDB Pythonクライアントをリニューアルしました。
5+
V5.8にてGridDB Pythonクライアントをリニューアルしました。
66

77
これまではGridDB C API(Cクライアント)経由でサーバへの操作を提供していましたが、
88
様々な機能強化のために、
@@ -18,8 +18,8 @@ GridDB Pythonクライアントをリニューアルしました。
1818
OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
1919
Python: 3.12
2020
Java: 8
21-
GridDB Java API: V5.8 CE
22-
GridDB Server: V5.8 CE, Ubuntu 22.04 (x64)
21+
GridDB Java API: V5.9 CE
22+
GridDB Server: V5.9 CE, Ubuntu 22.04 (x64)
2323

2424
## クイックスタート
2525

@@ -55,7 +55,7 @@ $ cd sample
5555
1. sampleフォルダ上にGridDB Java APIのダウンロード
5656

5757
```sh
58-
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8.0/gridstore-5.8.0.jar
58+
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9.0/gridstore-5.9.0.jar
5959
```
6060

6161
2. sampleフォルダ上にGridDB JavaAPI Adapter for Apache Arrowの配置

java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.griddb</groupId>
66
<artifactId>gridstore-arrow</artifactId>
7-
<version>5.8.0</version>
7+
<version>5.9.0</version>
88
<packaging>jar</packaging>
99

1010
<name>GridDB JavaAPI Adapter for Apache Arrow</name>
@@ -13,7 +13,7 @@
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<arrow.version>17.0.0</arrow.version>
1515
<slf4j.version>1.7.36</slf4j.version>
16-
<griddb.version>5.8.0</griddb.version>
16+
<griddb.version>5.9.0</griddb.version>
1717
<maven.compiler.source>1.8</maven.compiler.source>
1818
<maven.compiler.target>1.8</maven.compiler.target>
1919
</properties>

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "griddb_python"
3-
version = "5.8.0"
3+
version = "5.9.0"
44
authors = [
55
{ name="Toshiba Digital Solutions Corporation", email="contact@griddb.org" },
66
]

python/src/griddb_python/griddb_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
from com.toshiba.mwcloud.gs import TimeUnit as JTimeUnit
7575
from com.toshiba.mwcloud.gs import FetchOption as JFetchOption
7676
from com.toshiba.mwcloud.gs import Geometry as JGeometry
77-
CLIENT_VERSION = "Python Client for GridDB V5.8"
77+
CLIENT_VERSION = "Python Client for GridDB V5.9"
7878

7979
import warnings
8080
warnings.filterwarnings(action="ignore", message=r"datetime.datetime.utcfromtimestamp")

0 commit comments

Comments
 (0)