This is an automated email from the ASF dual-hosted git repository.

jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 266564f6f6 [MINOR] build: Bump version to 0.10.0-incubating-snapshot 
(#6898)
266564f6f6 is described below

commit 266564f6f688bd31c3957681a5118a6dec153850
Author: roryqi <[email protected]>
AuthorDate: Fri Apr 25 11:26:13 2025 +0800

    [MINOR] build: Bump version to 0.10.0-incubating-snapshot (#6898)
    
    ### What changes were proposed in this pull request?
    
    bump version to 0.10.0-incubating-snapshot
    
    ### Why are the changes needed?
    
    
    Just a minor.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    CI passed.
---
 clients/client-python/setup.py                     |  2 +-
 clients/filesystem-fuse/Cargo.toml                 |  2 +-
 dev/charts/gravitino/Chart.yaml                    |  4 ++--
 docs/index.md                                      |  8 ++++----
 docs/manage-relational-metadata-using-gravitino.md | 14 +++++++-------
 docs/open-api/openapi.yaml                         |  2 +-
 gradle.properties                                  |  2 +-
 7 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/clients/client-python/setup.py b/clients/client-python/setup.py
index 878e74a1d0..56fa26a45a 100644
--- a/clients/client-python/setup.py
+++ b/clients/client-python/setup.py
@@ -27,7 +27,7 @@ except FileNotFoundError:
 setup(
     name="apache-gravitino",
     description="Python lib/client for Apache Gravitino",
-    version="0.9.0.dev0",
+    version="0.10.0.dev0",
     long_description=long_description,
     long_description_content_type="text/markdown",
     author="Apache Software Foundation",
diff --git a/clients/filesystem-fuse/Cargo.toml 
b/clients/filesystem-fuse/Cargo.toml
index 29b9950242..2e3a0af4ea 100644
--- a/clients/filesystem-fuse/Cargo.toml
+++ b/clients/filesystem-fuse/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "filesystem-fuse"
-version = "0.8.0-incubating-SNAPSHOT"
+version = "0.10.0-incubating-SNAPSHOT"
 rust-version = "1.75"
 edition = "2021"
 
diff --git a/dev/charts/gravitino/Chart.yaml b/dev/charts/gravitino/Chart.yaml
index 811083a62d..79b2893ef6 100644
--- a/dev/charts/gravitino/Chart.yaml
+++ b/dev/charts/gravitino/Chart.yaml
@@ -17,7 +17,7 @@
 # under the License.
 #
 apiVersion: v2
-appVersion: 0.9.0-incubating-SNAPSHOT
+appVersion: 0.10.0-incubating-SNAPSHOT
 description: Apache Gravitino is a high-performance, geo-distributed, and 
federated metadata lake. It manages the metadata directly in different sources, 
types, and regions. It also provides users with unified metadata access for 
data and AI assets.
 home: https://gravitino.apache.org
 annotations:
@@ -35,4 +35,4 @@ maintainers:
 name: gravitino
 sources:
   - https://github.com/apache/gravitino
-version: 0.9.0
+version: 0.10.0
diff --git a/docs/index.md b/docs/index.md
index 8e75f09cc5..fef3b001ff 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -65,8 +65,8 @@ You can use either to manage metadata. See
 
 Also, you can find the complete REST API definition in
 [Gravitino Open API](./api/rest/gravitino-rest-api),
-Java SDK definition in [Gravitino Java 
doc](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/index.html),
-and Python SDK definition in [Gravitino Python 
doc](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/python/index.html).
+Java SDK definition in [Gravitino Java 
doc](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/index.html),
+and Python SDK definition in [Gravitino Python 
doc](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/python/index.html).
 
 Gravitino also provides a web UI to manage the metadata. Visit the web UI in 
the browser via `http://<ip-address>:8090`.
 See [Gravitino web UI](./webui.md) for details.
@@ -184,8 +184,8 @@ Gravitino provides security configurations for Gravitino, 
including HTTPS, authe
 ### Programming guides
 
 * [Gravitino Open API](./api/rest/gravitino-rest-api): provides the complete 
Open API definition of Gravitino.
-* [Gravitino Java 
doc](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/index.html): provides 
the Javadoc for the Gravitino API.
-* [Gravitino Python 
doc](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/python/index.html): 
provides the Python doc for the Gravitino API.
+* [Gravitino Java 
doc](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/index.html): provides 
the Javadoc for the Gravitino API.
+* [Gravitino Python 
doc](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/python/index.html): 
provides the Python doc for the Gravitino API.
 
 ### Development guides
 
diff --git a/docs/manage-relational-metadata-using-gravitino.md 
b/docs/manage-relational-metadata-using-gravitino.md
index b3d28e9512..3238899b26 100644
--- a/docs/manage-relational-metadata-using-gravitino.md
+++ b/docs/manage-relational-metadata-using-gravitino.md
@@ -909,7 +909,7 @@ The following types that Gravitino supports:
 | Union                     | `Types.UnionType.of([type1, type2, ...])`        
                        | `{"type": "union", "types": [type JSON, ...]}`        
                                                                               
| Union type, indicates a union of types                                        
                                                                                
             |
 | UUID                      | `Types.UUIDType.get()`                           
                        | `uuid`                                                
                                                                               
| UUID type, indicates a universally unique identifier                          
                                                                                
             |
 
-The related java doc is 
[here](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/types/Type.html).
+The related java doc is 
[here](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/types/Type.html).
 
 ##### External type
 
@@ -1020,12 +1020,12 @@ The following is the table property that Gravitino 
supports:
 
 In addition to the basic settings, Gravitino supports the following features:
 
-| Feature             | Description                                            
                                                                                
                                                                                
                                                                        | Java 
doc                                                                             
                                                    |
-|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------|
-| Table partitioning  | Equal to `PARTITION BY` in Apache Hive, It is a 
partitioning strategy that is used to split a table into parts based on 
partition keys. Some table engine may not support this feature                  
                                                                                
       | 
[Partition](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/dto/rel/partitioning/Partitioning.html)
             |
-| Table distribution  | Equal to `CLUSTERED BY` in Apache Hive, distribution 
a.k.a (Clustering) is a technique to split the data into more manageable 
files/parts, (By specifying the number of buckets to create). The value of the 
distribution column will be hashed by a user-defined number into buckets.       
  | 
[Distribution](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/expressions/distributions/Distribution.html)
 |
-| Table sort ordering | Equal to `SORTED BY` in Apache Hive, sort ordering is 
a method to sort the data in specific ways such as by a column or a function, 
and then store table data. it will highly improve the query performance under 
certain scenarios.                                                           | 
[SortOrder](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/expressions/sorts/SortOrder.html)
               |
-| Table indexes       | Equal to `KEY/INDEX` in MySQL , unique key enforces 
uniqueness of values in one or more columns within a table. It ensures that no 
two rows have identical values in specified columns, thereby facilitating data 
integrity and enabling efficient data retrieval and manipulation operations. | 
[Index](pathname:///docs/0.9.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/indexes/Index.html)
                                 |
+| Feature             | Description                                            
                                                                                
                                                                                
                                                                        | Java 
doc                                                                             
                                                     |
+|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
+| Table partitioning  | Equal to `PARTITION BY` in Apache Hive, It is a 
partitioning strategy that is used to split a table into parts based on 
partition keys. Some table engine may not support this feature                  
                                                                                
       | 
[Partition](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/dto/rel/partitioning/Partitioning.html)
             |
+| Table distribution  | Equal to `CLUSTERED BY` in Apache Hive, distribution 
a.k.a (Clustering) is a technique to split the data into more manageable 
files/parts, (By specifying the number of buckets to create). The value of the 
distribution column will be hashed by a user-defined number into buckets.       
  | 
[Distribution](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/expressions/distributions/Distribution.html)
 |
+| Table sort ordering | Equal to `SORTED BY` in Apache Hive, sort ordering is 
a method to sort the data in specific ways such as by a column or a function, 
and then store table data. it will highly improve the query performance under 
certain scenarios.                                                           | 
[SortOrder](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/expressions/sorts/SortOrder.html)
               |
+| Table indexes       | Equal to `KEY/INDEX` in MySQL , unique key enforces 
uniqueness of values in one or more columns within a table. It ensures that no 
two rows have identical values in specified columns, thereby facilitating data 
integrity and enabling efficient data retrieval and manipulation operations. | 
[Index](pathname:///docs/0.10.0-incubating-SNAPSHOT/api/java/org/apache/gravitino/rel/indexes/Index.html)
                                 |
 
 For more information, please see the related document on [partitioning, 
bucketing, sorting, and 
indexes](table-partitioning-bucketing-sort-order-indexes.md).
 
diff --git a/docs/open-api/openapi.yaml b/docs/open-api/openapi.yaml
index 47406c4b4d..899410d53d 100644
--- a/docs/open-api/openapi.yaml
+++ b/docs/open-api/openapi.yaml
@@ -22,7 +22,7 @@ info:
   license:
     name: Apache 2.0
     url: https://www.apache.org/licenses/LICENSE-2.0.html
-  version: 0.9.0-incubating-SNAPSHOT
+  version: 0.10.0-incubating-SNAPSHOT
   description: |
     Defines the specification for the first version of the Gravitino REST API.
 
diff --git a/gradle.properties b/gradle.properties
index 4049f73840..ad927c27da 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -23,7 +23,7 @@ org.gradle.caching=true
 org.gradle.jvmargs=-Xmx4g
 
 # version that is going to be updated automatically by releases
-version = 0.9.0-incubating-SNAPSHOT
+version = 0.10.0-incubating-SNAPSHOT
 
 # sonatype credentials
 SONATYPE_USER = admin

Reply via email to