Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 41.0.0 #4353

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ exclude = [
]

[workspace.package]
version = "40.0.0"
version = "41.0.0"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <[email protected]>"]
Expand All @@ -76,18 +76,18 @@ edition = "2021"
rust-version = "1.62"

[workspace.dependencies]
arrow = { version = "40.0.0", path = "./arrow", default-features = false }
arrow-arith = { version = "40.0.0", path = "./arrow-arith" }
arrow-array = { version = "40.0.0", path = "./arrow-array" }
arrow-buffer = { version = "40.0.0", path = "./arrow-buffer" }
arrow-cast = { version = "40.0.0", path = "./arrow-cast" }
arrow-csv = { version = "40.0.0", path = "./arrow-csv" }
arrow-data = { version = "40.0.0", path = "./arrow-data" }
arrow-ipc = { version = "40.0.0", path = "./arrow-ipc" }
arrow-json = { version = "40.0.0", path = "./arrow-json" }
arrow-ord = { version = "40.0.0", path = "./arrow-ord" }
arrow-row = { version = "40.0.0", path = "./arrow-row" }
arrow-schema = { version = "40.0.0", path = "./arrow-schema" }
arrow-select = { version = "40.0.0", path = "./arrow-select" }
arrow-string = { version = "40.0.0", path = "./arrow-string" }
parquet = { version = "40.0.0", path = "./parquet", default-features = false }
arrow = { version = "41.0.0", path = "./arrow", default-features = false }
arrow-arith = { version = "41.0.0", path = "./arrow-arith" }
arrow-array = { version = "41.0.0", path = "./arrow-array" }
arrow-buffer = { version = "41.0.0", path = "./arrow-buffer" }
arrow-cast = { version = "41.0.0", path = "./arrow-cast" }
arrow-csv = { version = "41.0.0", path = "./arrow-csv" }
arrow-data = { version = "41.0.0", path = "./arrow-data" }
arrow-ipc = { version = "41.0.0", path = "./arrow-ipc" }
arrow-json = { version = "41.0.0", path = "./arrow-json" }
arrow-ord = { version = "41.0.0", path = "./arrow-ord" }
arrow-row = { version = "41.0.0", path = "./arrow-row" }
arrow-schema = { version = "41.0.0", path = "./arrow-schema" }
arrow-select = { version = "41.0.0", path = "./arrow-select" }
arrow-string = { version = "41.0.0", path = "./arrow-string" }
parquet = { version = "41.0.0", path = "./parquet", default-features = false }
4 changes: 2 additions & 2 deletions conbench/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ conda activate conbench
"machine_info": {
"architecture_name": "x86_64",
"cpu_core_count": "8",
"cpu_frequency_max_hz": "2400000000",
"cpu_frequency_max_hz": "241.0.0000",
"cpu_l1d_cache_bytes": "65536",
"cpu_l1i_cache_bytes": "131072",
"cpu_l2_cache_bytes": "4194304",
Expand Down Expand Up @@ -208,7 +208,7 @@ Benchmark result:
"machine_info": {
"architecture_name": "x86_64",
"cpu_core_count": "8",
"cpu_frequency_max_hz": "2400000000",
"cpu_frequency_max_hz": "241.0.0000",
"cpu_l1d_cache_bytes": "65536",
"cpu_l1i_cache_bytes": "131072",
"cpu_l2_cache_bytes": "4194304",
Expand Down
2 changes: 1 addition & 1 deletion dev/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ git pull
git checkout -b <RELEASE_BRANCH>

# Update versions. Make sure to run it before the next step since we do not want CHANGELOG-old.md affected.
sed -i '' -e 's/14.0.0/39.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' | grep -v CHANGELOG.md`
sed -i '' -e 's/14.0.0/41.0.0/g' `find . -name 'Cargo.toml' -or -name '*.md' | grep -v CHANGELOG.md`
git commit -a -m 'Update version'

# Copy the content of CHANGELOG.md to the beginning of CHANGELOG-old.md
Expand Down
4 changes: 2 additions & 2 deletions dev/release/update_change_log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

set -e

SINCE_TAG="39.0.0"
FUTURE_RELEASE="40.0.0"
SINCE_TAG="40.0.0"
FUTURE_RELEASE="41.0.0"

SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)"
Expand Down