Skip to content

Commit

Permalink
Release pyo3-polars 0.16.0 -> Rust Polars 0.42 (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Aug 14, 2024
1 parent a55bed8 commit a2a31be
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ members = [
]

[workspace.dependencies]
polars = { version = "0.41.0", default-features = false }
polars-core = { version = "0.41.0", default-features = false }
polars-ffi = { version = "0.41.0", default-features = false }
polars-plan = { version = "0.41.0", default-feautres = false }
polars-lazy = { version = "0.41.0", default-features = false }
polars = { version = "0.42.0", default-features = false }
polars-core = { version = "0.42.0", default-features = false }
polars-ffi = { version = "0.42.0", default-features = false }
polars-plan = { version = "0.42.0", default-feautres = false }
polars-lazy = { version = "0.42.0", default-features = false }

[workspace.dependencies.arrow]
package = "polars-arrow"
version = "0.41.3"
version = "0.42.0"
path = "../polars/crates/polars-arrow"
default-features = false

[patch.crates-io]
polars = { git = "https://github.com/pola-rs/polars.git" }
polars-core = { git = "https://github.com/pola-rs/polars.git" }
polars-ffi = { git = "https://github.com/pola-rs/polars.git" }
polars-plan = { git = "https://github.com/pola-rs/polars.git" }
polars-lazy = { git = "https://github.com/pola-rs/polars.git" }
#[patch.crates-io]
#polars = { git = "https://github.com/pola-rs/polars.git" }
#polars-core = { git = "https://github.com/pola-rs/polars.git" }
#polars-ffi = { git = "https://github.com/pola-rs/polars.git" }
#polars-plan = { git = "https://github.com/pola-rs/polars.git" }
#polars-lazy = { git = "https://github.com/pola-rs/polars.git" }
2 changes: 1 addition & 1 deletion pyo3-polars-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-polars-derive"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions pyo3-polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-polars"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
license = "MIT"
readme = "../README.md"
Expand All @@ -19,7 +19,7 @@ polars-ffi = { workspace = true, optional = true }
polars-lazy = { workspace = true, optional = true }
polars-plan = { workspace = true, optional = true }
pyo3 = "0.22.2"
pyo3-polars-derive = { version = "0.9.0", path = "../pyo3-polars-derive", optional = true }
pyo3-polars-derive = { version = "0.10.0", path = "../pyo3-polars-derive", optional = true }
serde = { version = "1", optional = true }
serde-pickle = { version = "1", optional = true }
thiserror = "1"
Expand Down

0 comments on commit a2a31be

Please sign in to comment.