Skip to content

Commit

Permalink
Release rust 0.23.0 (#4248)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Aug 4, 2022
1 parent 033881f commit 2df62d2
Show file tree
Hide file tree
Showing 10 changed files with 54 additions and 53 deletions.
12 changes: 6 additions & 6 deletions polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
keywords = ["dataframe", "query-engine", "arrow"]
Expand Down Expand Up @@ -252,11 +252,11 @@ bench = [
]

[dependencies]
polars-core = { version = "0.22.6", path = "./polars-core", features = ["docs", "private"], default-features = false }
polars-io = { version = "0.22.6", path = "./polars-io", features = ["private"], default-features = false, optional = true }
polars-lazy = { version = "0.22.6", path = "./polars-lazy", features = ["private"], default-features = false, optional = true }
polars-ops = { version = "0.22.6", path = "./polars-ops" }
polars-time = { version = "0.22.6", path = "./polars-time", default-features = false, optional = true }
polars-core = { version = "0.23.0", path = "./polars-core", features = ["docs", "private"], default-features = false }
polars-io = { version = "0.23.0", path = "./polars-io", features = ["private"], default-features = false, optional = true }
polars-lazy = { version = "0.23.0", path = "./polars-lazy", features = ["private"], default-features = false, optional = true }
polars-ops = { version = "0.23.0", path = "./polars-ops" }
polars-time = { version = "0.23.0", path = "./polars-time", default-features = false, optional = true }

[dev-dependencies]
ahash = "0.7"
Expand Down
12 changes: 6 additions & 6 deletions polars/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,16 @@ doctest:

publish:
cargo publish --allow-dirty -p polars-arrow
sleep 15
sleep 20
cargo publish --allow-dirty -p polars-utils
sleep 15
sleep 20
cargo publish --allow-dirty -p polars-core
sleep 15
sleep 20
cargo publish --allow-dirty -p polars-time
cargo publish --allow-dirty -p polars-ops
sleep 15
sleep 20
cargo publish --allow-dirty -p polars-io
sleep 15
sleep 20
cargo publish --allow-dirty -p polars-lazy
sleep 15
sleep 20
cargo publish --allow-dirty -p polars
6 changes: 3 additions & 3 deletions polars/polars-arrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-arrow"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -9,10 +9,10 @@ description = "Arrow interfaces for Polars DataFrame library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1", features = ["compute_concatenate"], default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1", features = ["compute_concatenate"], default-features = false }
# arrow = { package = "arrow2", path = "../../../arrow2", features = ["compute_concatenate"], default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/ritchie46/arrow2", branch = "polars", features = ["compute_concatenate"], default-features = false }
# arrow = { package = "arrow2", version = "0.12", default-features = false, features = ["compute_concatenate"] }
arrow = { package = "arrow2", version = "0.13", default-features = false, features = ["compute_concatenate"] }
hashbrown = "0.12"
num = "^0.4"
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
12 changes: 6 additions & 6 deletions polars/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-core"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -159,8 +159,8 @@ jsonpath_lib = { version = "0.3.0", optional = true, git = "https://github.com/r
ndarray = { version = "0.15", optional = true, default_features = false }
num = "^0.4"
once_cell = "1"
polars-arrow = { version = "0.22.6", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.22.6", path = "../polars-utils" }
polars-arrow = { version = "0.23.0", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.23.0", path = "../polars-utils" }
rand = { version = "0.8", optional = true, features = ["small_rng", "std"] }
rand_distr = { version = "0.4", optional = true }
rayon = "1.5"
Expand All @@ -173,12 +173,12 @@ thiserror = "^1.0"

[dependencies.arrow]
package = "arrow2"
git = "https://github.com/jorgecarleitao/arrow2"
# git = "https://github.com/jorgecarleitao/arrow2"
# git = "https://github.com/ritchie46/arrow2"
rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1"
# rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1"
# path = "../../../arrow2"
# branch = "polars"
# version = "0.12"
version = "0.13"
default-features = false
features = [
"compute_aggregate",
Expand Down
14 changes: 7 additions & 7 deletions polars/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-io"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -37,9 +37,9 @@ private = ["polars-time/private"]
[dependencies]
ahash = "0.7"
anyhow = "1.0"
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1", default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "8604cb760b8ac475d7968b714d47e4ff714c61a1", default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/ritchie46/arrow2", branch = "polars", default-features = false }
# arrow = { package = "arrow2", version = "0.12", default-features = false }
arrow = { package = "arrow2", version = "0.13", default-features = false }
# arrow = { package = "arrow2", path = "../../../arrow2", default-features = false }
csv-core = { version = "0.1.10", optional = true }
dirs = "4.0"
Expand All @@ -50,10 +50,10 @@ memchr = "2.4"
memmap = { package = "memmap2", version = "0.5.2", optional = true }
num = "^0.4"
once_cell = "1"
polars-arrow = { version = "0.22.6", path = "../polars-arrow" }
polars-core = { version = "0.22.6", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.22.6", path = "../polars-time", features = ["private"], default-features = false, optional = true }
polars-utils = { version = "0.22.6", path = "../polars-utils" }
polars-arrow = { version = "0.23.0", path = "../polars-arrow" }
polars-core = { version = "0.23.0", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.23.0", path = "../polars-time", features = ["private"], default-features = false, optional = true }
polars-utils = { version = "0.23.0", path = "../polars-utils" }
rayon = "1.5"
regex = "1.5"
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
14 changes: 7 additions & 7 deletions polars/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-lazy"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -128,12 +128,12 @@ rayon = "1.5"
regex = { version = "1.5", optional = true }
serde = { version = "1", features = ["derive", "rc"], optional = true }

polars-arrow = { version = "0.22.6", path = "../polars-arrow" }
polars-core = { version = "0.22.6", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-io = { version = "0.22.6", path = "../polars-io", features = ["lazy", "csv-file", "private"], default-features = false }
polars-ops = { version = "0.22.6", path = "../polars-ops", default-features = false }
polars-time = { version = "0.22.6", path = "../polars-time", optional = true }
polars-utils = { version = "0.22.6", path = "../polars-utils" }
polars-arrow = { version = "0.23.0", path = "../polars-arrow" }
polars-core = { version = "0.23.0", path = "../polars-core", features = ["lazy", "private", "zip_with", "random"], default-features = false }
polars-io = { version = "0.23.0", path = "../polars-io", features = ["lazy", "csv-file", "private"], default-features = false }
polars-ops = { version = "0.23.0", path = "../polars-ops", default-features = false }
polars-time = { version = "0.23.0", path = "../polars-time", optional = true }
polars-utils = { version = "0.23.0", path = "../polars-utils" }

[package.metadata.docs.rs]
all-features = true
Expand Down
6 changes: 3 additions & 3 deletions polars/polars-ops/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-ops"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -10,8 +10,8 @@ description = "More operations on polars data structures"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
polars-arrow = { version = "0.22.6", path = "../polars-arrow", default-features = false }
polars-core = { version = "0.22.6", path = "../polars-core", features = ["private"], default-features = false }
polars-arrow = { version = "0.23.0", path = "../polars-arrow", default-features = false }
polars-core = { version = "0.23.0", path = "../polars-core", features = ["private"], default-features = false }

[features]
dtype-categorical = ["polars-core/dtype-categorical"]
Expand Down
8 changes: 4 additions & 4 deletions polars/polars-time/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-time"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,9 +11,9 @@ description = "Time related code for the polars dataframe library"
[dependencies]
chrono = "0.4"
lexical = { version = "6", default-features = false, features = ["std", "parse-floats", "parse-integers"] }
polars-arrow = { version = "0.22.6", path = "../polars-arrow", features = ["compute", "temporal"] }
polars-core = { version = "0.22.6", path = "../polars-core", default-features = false, features = ["private", "dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-utils = { version = "0.22.6", path = "../polars-utils" }
polars-arrow = { version = "0.23.0", path = "../polars-arrow", features = ["compute", "temporal"] }
polars-core = { version = "0.23.0", path = "../polars-core", default-features = false, features = ["private", "dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-utils = { version = "0.23.0", path = "../polars-utils" }
serde = { version = "1", features = ["derive"], optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars-utils"
version = "0.22.6"
version = "0.23.0"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
21 changes: 11 additions & 10 deletions py-polars/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2df62d2

Please sign in to comment.