You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/01/19 15:09:04 UTC

[arrow-datafusion] branch maint-16.x updated: [maint-16.x] Prep for release (#4975)

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

alamb pushed a commit to branch maint-16.x
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/maint-16.x by this push:
     new 2b4c0a6d9 [maint-16.x] Prep for release (#4975)
2b4c0a6d9 is described below

commit 2b4c0a6d9a86ac3d9e2a9472a06631054ed3550e
Author: Andy Grove <an...@gmail.com>
AuthorDate: Thu Jan 19 08:08:58 2023 -0700

    [maint-16.x] Prep for release (#4975)
    
    * update version
    
    * update version
    
    * update Cargo.lock
---
 benchmarks/Cargo.toml               |  6 +++---
 datafusion-cli/Cargo.lock           | 16 ++++++++--------
 datafusion-cli/Cargo.toml           |  4 ++--
 datafusion-examples/Cargo.toml      |  2 +-
 datafusion/common/Cargo.toml        |  2 +-
 datafusion/core/Cargo.toml          | 16 ++++++++--------
 datafusion/expr/Cargo.toml          |  4 ++--
 datafusion/jit/Cargo.toml           |  6 +++---
 datafusion/optimizer/Cargo.toml     | 10 +++++-----
 datafusion/physical-expr/Cargo.toml |  8 ++++----
 datafusion/proto/Cargo.toml         |  8 ++++----
 datafusion/row/Cargo.toml           |  6 +++---
 datafusion/sql/Cargo.toml           |  6 +++---
 13 files changed, 47 insertions(+), 47 deletions(-)

diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index 33fd436eb..24a105753 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-benchmarks"
 description = "DataFusion Benchmarks"
-version = "16.0.0"
+version = "16.1.0"
 edition = "2021"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
 homepage = "https://github.com/apache/arrow-datafusion"
@@ -34,7 +34,7 @@ snmalloc = ["snmalloc-rs"]
 
 [dependencies]
 arrow = "29.0.0"
-datafusion = { path = "../datafusion/core", version = "16.0.0", features = ["scheduler"] }
+datafusion = { path = "../datafusion/core", version = "16.1.0", features = ["scheduler"] }
 env_logger = "0.10"
 futures = "0.3"
 mimalloc = { version = "0.1", optional = true, default-features = false }
@@ -51,4 +51,4 @@ test-utils = { path = "../test-utils/", version = "0.1.0" }
 tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }
 
 [dev-dependencies]
-datafusion-proto = { path = "../datafusion/proto", version = "16.0.0" }
+datafusion-proto = { path = "../datafusion/proto", version = "16.1.0" }
diff --git a/datafusion-cli/Cargo.lock b/datafusion-cli/Cargo.lock
index e4bc1b20d..9996978c9 100644
--- a/datafusion-cli/Cargo.lock
+++ b/datafusion-cli/Cargo.lock
@@ -653,7 +653,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "ahash",
  "arrow",
@@ -698,7 +698,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-cli"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "arrow",
  "async-trait",
@@ -716,7 +716,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-common"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "arrow",
  "chrono",
@@ -728,7 +728,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-expr"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "ahash",
  "arrow",
@@ -739,7 +739,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-optimizer"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "arrow",
  "async-trait",
@@ -754,7 +754,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-physical-expr"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "ahash",
  "arrow",
@@ -783,7 +783,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-row"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "arrow",
  "datafusion-common",
@@ -793,7 +793,7 @@ dependencies = [
 
 [[package]]
 name = "datafusion-sql"
-version = "16.0.0"
+version = "16.1.0"
 dependencies = [
  "arrow-schema",
  "datafusion-common",
diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml
index 7ad2041e6..bcfd2d72d 100644
--- a/datafusion-cli/Cargo.toml
+++ b/datafusion-cli/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-cli"
 description = "Command Line Client for DataFusion query engine."
-version = "16.0.0"
+version = "16.1.0"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
 edition = "2021"
 keywords = [ "arrow", "datafusion", "query", "sql" ]
@@ -32,7 +32,7 @@ readme = "README.md"
 arrow = "29.0.0"
 async-trait = "0.1.41"
 clap = { version = "3", features = ["derive", "cargo"] }
-datafusion = { path = "../datafusion/core", version = "16.0.0" }
+datafusion = { path = "../datafusion/core", version = "16.1.0" }
 dirs = "4.0.0"
 env_logger = "0.9"
 mimalloc = { version = "0.1", default-features = false }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index 53b1826a9..64de10efc 100644
--- a/datafusion-examples/Cargo.toml
+++ b/datafusion-examples/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-examples"
 description = "DataFusion usage examples"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml
index 7445812a1..6c63a81a1 100644
--- a/datafusion/common/Cargo.toml
+++ b/datafusion/common/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-common"
 description = "Common functionality for DataFusion query engine"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml
index a1c9c463e..448bb3518 100644
--- a/datafusion/core/Cargo.toml
+++ b/datafusion/core/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion"
 description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "../../README.md"
@@ -64,13 +64,13 @@ bytes = "1.1"
 bzip2 = { version = "0.4.3", optional = true }
 chrono = { version = "0.4.23", default-features = false }
 dashmap = "5.4.0"
-datafusion-common = { path = "../common", version = "16.0.0", features = ["parquet", "object_store"] }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
-datafusion-jit = { path = "../jit", version = "16.0.0", optional = true }
-datafusion-optimizer = { path = "../optimizer", version = "16.0.0" }
-datafusion-physical-expr = { path = "../physical-expr", version = "16.0.0" }
-datafusion-row = { path = "../row", version = "16.0.0" }
-datafusion-sql = { path = "../sql", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0", features = ["parquet", "object_store"] }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
+datafusion-jit = { path = "../jit", version = "16.1.0", optional = true }
+datafusion-optimizer = { path = "../optimizer", version = "16.1.0" }
+datafusion-physical-expr = { path = "../physical-expr", version = "16.1.0" }
+datafusion-row = { path = "../row", version = "16.1.0" }
+datafusion-sql = { path = "../sql", version = "16.1.0" }
 flate2 = { version = "1.0.24", optional = true }
 futures = "0.3"
 glob = "0.3.0"
diff --git a/datafusion/expr/Cargo.toml b/datafusion/expr/Cargo.toml
index 34adfda49..2c0849117 100644
--- a/datafusion/expr/Cargo.toml
+++ b/datafusion/expr/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-expr"
 description = "Logical plan and expression representation for DataFusion query engine"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -37,6 +37,6 @@ path = "src/lib.rs"
 [dependencies]
 ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
 arrow = { version = "29.0.0", default-features = false }
-datafusion-common = { path = "../common", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0" }
 log = "^0.4"
 sqlparser = "0.30"
diff --git a/datafusion/jit/Cargo.toml b/datafusion/jit/Cargo.toml
index 816cbf8f1..7bb4f8c32 100644
--- a/datafusion/jit/Cargo.toml
+++ b/datafusion/jit/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-jit"
 description = "Just In Time (JIT) compilation support for DataFusion query engine"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -41,7 +41,7 @@ cranelift = "0.89.0"
 cranelift-jit = "0.89.0"
 cranelift-module = "0.89.0"
 cranelift-native = "0.89.0"
-datafusion-common = { path = "../common", version = "16.0.0", features = ["jit"] }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0", features = ["jit"] }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
 
 parking_lot = "0.12"
diff --git a/datafusion/optimizer/Cargo.toml b/datafusion/optimizer/Cargo.toml
index ee8f3a5f2..a886a9d16 100644
--- a/datafusion/optimizer/Cargo.toml
+++ b/datafusion/optimizer/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-optimizer"
 description = "DataFusion Query Optimizer"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -40,14 +40,14 @@ unicode_expressions = []
 arrow = { version = "29.0.0", features = ["prettyprint"] }
 async-trait = "0.1.41"
 chrono = { version = "0.4.23", default-features = false }
-datafusion-common = { path = "../common", version = "16.0.0" }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
-datafusion-physical-expr = { path = "../physical-expr", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0" }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
+datafusion-physical-expr = { path = "../physical-expr", version = "16.1.0" }
 hashbrown = { version = "0.13", features = ["raw"] }
 log = "^0.4"
 regex-syntax = "0.6.28"
 
 [dev-dependencies]
 ctor = "0.1.22"
-datafusion-sql = { path = "../sql", version = "16.0.0" }
+datafusion-sql = { path = "../sql", version = "16.1.0" }
 env_logger = "0.10.0"
diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml
index 3fb632ebd..dadf8f583 100644
--- a/datafusion/physical-expr/Cargo.toml
+++ b/datafusion/physical-expr/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-physical-expr"
 description = "Physical expression implementation for DataFusion query engine"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -46,9 +46,9 @@ arrow-schema = "29.0.0"
 blake2 = { version = "^0.10.2", optional = true }
 blake3 = { version = "1.0", optional = true }
 chrono = { version = "0.4.23", default-features = false }
-datafusion-common = { path = "../common", version = "16.0.0" }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
-datafusion-row = { path = "../row", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0" }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
+datafusion-row = { path = "../row", version = "16.1.0" }
 half = { version = "2.1", default-features = false }
 hashbrown = { version = "0.13", features = ["raw"] }
 indexmap = "1.9.2"
diff --git a/datafusion/proto/Cargo.toml b/datafusion/proto/Cargo.toml
index 245aa9e77..d9b5b977b 100644
--- a/datafusion/proto/Cargo.toml
+++ b/datafusion/proto/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-proto"
 description = "Protobuf serialization of DataFusion logical plan expressions"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -42,9 +42,9 @@ json = ["pbjson", "serde", "serde_json"]
 [dependencies]
 arrow = "29.0.0"
 chrono = { version = "0.4", default-features = false }
-datafusion = { path = "../core", version = "16.0.0" }
-datafusion-common = { path = "../common", version = "16.0.0" }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
+datafusion = { path = "../core", version = "16.1.0" }
+datafusion-common = { path = "../common", version = "16.1.0" }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
 object_store = { version = "0.5.0" }
 parking_lot = { version = "0.12" }
 pbjson = { version = "0.5", optional = true }
diff --git a/datafusion/row/Cargo.toml b/datafusion/row/Cargo.toml
index 2ae8cb3c4..1bd7b708b 100644
--- a/datafusion/row/Cargo.toml
+++ b/datafusion/row/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-row"
 description = "Row backed by raw bytes for DataFusion query engine"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -38,7 +38,7 @@ jit = ["datafusion-jit"]
 
 [dependencies]
 arrow = "29.0.0"
-datafusion-common = { path = "../common", version = "16.0.0" }
-datafusion-jit = { path = "../jit", version = "16.0.0", optional = true }
+datafusion-common = { path = "../common", version = "16.1.0" }
+datafusion-jit = { path = "../jit", version = "16.1.0", optional = true }
 paste = "^1.0"
 rand = "0.8"
diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml
index 4dfd9b97c..4c5ece348 100644
--- a/datafusion/sql/Cargo.toml
+++ b/datafusion/sql/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion-sql"
 description = "DataFusion SQL Query Planner"
-version = "16.0.0"
+version = "16.1.0"
 homepage = "https://github.com/apache/arrow-datafusion"
 repository = "https://github.com/apache/arrow-datafusion"
 readme = "README.md"
@@ -38,7 +38,7 @@ unicode_expressions = []
 
 [dependencies]
 arrow-schema = "29.0.0"
-datafusion-common = { path = "../common", version = "16.0.0" }
-datafusion-expr = { path = "../expr", version = "16.0.0" }
+datafusion-common = { path = "../common", version = "16.1.0" }
+datafusion-expr = { path = "../expr", version = "16.1.0" }
 log = "^0.4"
 sqlparser = "0.30"