Skip to content

Commit

Permalink
Version 30.0.0 release notes and changelog (#3406)
Browse files Browse the repository at this point in the history
* Update version to 30.0.0

* Update version in script

* Initial changelog

* updates
  • Loading branch information
alamb authored Dec 29, 2022
1 parent 99a20dd commit bfae108
Show file tree
Hide file tree
Showing 28 changed files with 265 additions and 195 deletions.
101 changes: 101 additions & 0 deletions CHANGELOG-old.md

Large diffs are not rendered by default.

139 changes: 54 additions & 85 deletions CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions arrow-arith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-arith"
version = "29.0.0"
version = "30.0.0"
description = "Arrow arithmetic kernels"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false }
half = { version = "2.1", default-features = false }
multiversion = { version = "0.7.1", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions arrow-array/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-array"
version = "29.0.0"
version = "30.0.0"
description = "Array abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down Expand Up @@ -45,9 +45,9 @@ ahash = { version = "0.8", default-features = false, features = ["compile-time-r
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }

[dependencies]
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.8", optional = true }
num = { version = "0.4", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion arrow-buffer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-buffer"
version = "29.0.0"
version = "30.0.0"
description = "Buffer abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down
12 changes: 6 additions & 6 deletions arrow-cast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-cast"
version = "29.0.0"
version = "30.0.0"
description = "Cast kernel and utilities for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-select = { version = "29.0.0", path = "../arrow-select" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
arrow-select = { version = "30.0.0", path = "../arrow-select" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
num = { version = "0.4", default-features = false, features = ["std"] }
lexical-core = { version = "^0.8", default-features = false, features = ["write-integers", "write-floats", "parse-integers", "parse-floats"] }
Expand Down
12 changes: 6 additions & 6 deletions arrow-csv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-csv"
version = "29.0.0"
version = "30.0.0"
description = "Support for parsing CSV format into the Arrow format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "30.0.0", path = "../arrow-cast" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
csv = { version = "1.1", default-features = false }
csv-core = { version = "0.1"}
Expand Down
6 changes: 3 additions & 3 deletions arrow-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-data"
version = "29.0.0"
version = "30.0.0"
description = "Array data abstractions for Apache Arrow"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down Expand Up @@ -45,8 +45,8 @@ force_validate = []

[dependencies]

arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }

num = { version = "0.4", default-features = false, features = ["std"] }
half = { version = "2.1", default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions arrow-flight/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-flight"
description = "Apache Arrow Flight"
version = "29.0.0"
version = "30.0.0"
edition = "2021"
rust-version = "1.62"
authors = ["Apache Arrow <[email protected]>"]
Expand All @@ -27,10 +27,10 @@ repository = "https://github.com/apache/arrow-rs"
license = "Apache-2.0"

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-ipc = { version = "29.0.0", path = "../arrow-ipc" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-ipc = { version = "30.0.0", path = "../arrow-ipc" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
base64 = { version = "0.20", default-features = false, features = ["std"] }
tonic = { version = "0.8", default-features = false, features = ["transport", "codegen", "prost"] }
bytes = { version = "1", default-features = false }
Expand All @@ -48,7 +48,7 @@ flight-sql-experimental = []
tls = ["tonic/tls"]

[dev-dependencies]
arrow = { version = "29.0.0", path = "../arrow", features = ["prettyprint"] }
arrow = { version = "30.0.0", path = "../arrow", features = ["prettyprint"] }
tempfile = "3.3"
tokio-stream = { version = "0.1", features = ["net"] }
tower = "0.4.13"
Expand Down
2 changes: 1 addition & 1 deletion arrow-flight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
arrow-flight = "29.0.0"
arrow-flight = "30.0.0"
```

Apache Arrow Flight is a gRPC based protocol for exchanging Arrow data between processes. See the blog post [Introducing Apache Arrow Flight: A Framework for Fast Data Transport](https://arrow.apache.org/blog/2019/10/13/introducing-arrow-flight/) for more information.
Expand Down
6 changes: 3 additions & 3 deletions arrow-integration-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-integration-test"
version = "29.0.0"
version = "30.0.0"
description = "Support for the Apache Arrow JSON test data format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,8 +38,8 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow = { version = "29.0.0", path = "../arrow", default-features = false }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow = { version = "30.0.0", path = "../arrow", default-features = false }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
hex = { version = "0.4", default-features = false, features = ["std"] }
serde = { version = "1.0", default-features = false, features = ["rc", "derive"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion arrow-integration-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-integration-testing"
description = "Binaries used in the Arrow integration tests (NOT PUBLISHED TO crates.io)"
version = "29.0.0"
version = "30.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
Expand Down
12 changes: 6 additions & 6 deletions arrow-ipc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-ipc"
version = "29.0.0"
version = "30.0.0"
description = "Support for the Arrow IPC format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "30.0.0", path = "../arrow-cast" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
flatbuffers = { version = "22.9.2", default-features = false, features = ["thiserror"] }
lz4 = { version = "1.23", default-features = false, optional = true }
zstd = { version = "0.12.0", default-features = false, optional = true }
Expand Down
12 changes: 6 additions & 6 deletions arrow-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-json"
version = "29.0.0"
version = "30.0.0"
description = "Support for parsing JSON format into the Arrow format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "30.0.0", path = "../arrow-cast" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
half = { version = "2.1", default-features = false }
indexmap = { version = "1.9", default-features = false, features = ["std"] }
num = { version = "0.4", default-features = false, features = ["std"] }
Expand Down
12 changes: 6 additions & 6 deletions arrow-ord/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-ord"
version = "29.0.0"
version = "30.0.0"
description = "Ordering kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-select = { version = "29.0.0", path = "../arrow-select" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
arrow-select = { version = "30.0.0", path = "../arrow-select" }
num = { version = "0.4", default-features = false, features = ["std"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions arrow-pyarrow-integration-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-pyarrow-integration-testing"
description = ""
version = "29.0.0"
version = "30.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
Expand All @@ -32,7 +32,7 @@ name = "arrow_pyarrow_integration_testing"
crate-type = ["cdylib"]

[dependencies]
arrow = { path = "../arrow", version = "29.0.0", features = ["pyarrow"] }
arrow = { path = "../arrow", version = "30.0.0", features = ["pyarrow"] }
pyo3 = { version = "0.17", features = ["extension-module"] }

[package.metadata.maturin]
Expand Down
14 changes: 7 additions & 7 deletions arrow-row/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-row"
version = "29.0.0"
version = "30.0.0"
description = "Arrow row format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -44,17 +44,17 @@ ahash = { version = "0.8", default-features = false, features = ["compile-time-r
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }

[dependencies]
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }

half = { version = "2.1", default-features = false }
hashbrown = { version = "0.13", default-features = false }

[dev-dependencies]
arrow-cast = { version = "29.0.0", path = "../arrow-cast" }
arrow-ord = { version = "29.0.0", path = "../arrow-ord" }
arrow-cast = { version = "30.0.0", path = "../arrow-cast" }
arrow-ord = { version = "30.0.0", path = "../arrow-ord" }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion arrow-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-schema"
version = "29.0.0"
version = "30.0.0"
description = "Defines the logical types for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down
10 changes: 5 additions & 5 deletions arrow-select/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-select"
version = "29.0.0"
version = "30.0.0"
description = "Selection kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,10 +38,10 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
num = { version = "0.4", default-features = false, features = ["std"] }

[features]
Expand Down
12 changes: 6 additions & 6 deletions arrow-string/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow-string"
version = "29.0.0"
version = "30.0.0"
description = "String kernels for arrow arrays"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand All @@ -38,11 +38,11 @@ path = "src/lib.rs"
bench = false

[dependencies]
arrow-buffer = { version = "29.0.0", path = "../arrow-buffer" }
arrow-data = { version = "29.0.0", path = "../arrow-data" }
arrow-schema = { version = "29.0.0", path = "../arrow-schema" }
arrow-array = { version = "29.0.0", path = "../arrow-array" }
arrow-select = { version = "29.0.0", path = "../arrow-select" }
arrow-buffer = { version = "30.0.0", path = "../arrow-buffer" }
arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
arrow-array = { version = "30.0.0", path = "../arrow-array" }
arrow-select = { version = "30.0.0", path = "../arrow-select" }
regex = { version = "1.7.0", default-features = false, features = ["std", "unicode", "perf"] }
regex-syntax = { version = "0.6.27", default-features = false, features = ["unicode"] }

Expand Down
Loading

0 comments on commit bfae108

Please sign in to comment.