Skip to content

Commit 21602ba

Browse files
authored
Rust Polars 0.41.0 (#17123)
1 parent 46ba436 commit 21602ba

File tree

5 files changed

+69
-42
lines changed

5 files changed

+69
-42
lines changed

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default-members = [
1414
# ]
1515

1616
[workspace.package]
17-
version = "0.40.0"
17+
version = "0.41.0"
1818
authors = ["Ritchie Vink <ritchie46@gmail.com>"]
1919
edition = "2021"
2020
homepage = "https://www.pola.rs/"
@@ -93,33 +93,33 @@ version_check = "0.9.4"
9393
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
9494
zstd = "0.13"
9595

96-
polars = { version = "0.40.0", path = "crates/polars", default-features = false }
97-
polars-compute = { version = "0.40.0", path = "crates/polars-compute", default-features = false }
98-
polars-core = { version = "0.40.0", path = "crates/polars-core", default-features = false }
99-
polars-error = { version = "0.40.0", path = "crates/polars-error", default-features = false }
100-
polars-expr = { version = "0.40.0", path = "crates/polars-expr", default-features = false }
101-
polars-ffi = { version = "0.40.0", path = "crates/polars-ffi", default-features = false }
102-
polars-io = { version = "0.40.0", path = "crates/polars-io", default-features = false }
103-
polars-json = { version = "0.40.0", path = "crates/polars-json", default-features = false }
104-
polars-lazy = { version = "0.40.0", path = "crates/polars-lazy", default-features = false }
105-
polars-mem-engine = { version = "0.40.0", path = "crates/polars-mem-engine", default-features = false }
106-
polars-ops = { version = "0.40.0", path = "crates/polars-ops", default-features = false }
107-
polars-parquet = { version = "0.40.0", path = "crates/polars-parquet", default-features = false }
108-
polars-pipe = { version = "0.40.0", path = "crates/polars-pipe", default-features = false }
109-
polars-plan = { version = "0.40.0", path = "crates/polars-plan", default-features = false }
110-
polars-row = { version = "0.40.0", path = "crates/polars-row", default-features = false }
111-
polars-sql = { version = "0.40.0", path = "crates/polars-sql", default-features = false }
112-
polars-stream = { version = "0.40.0", path = "crates/polars-stream", default-features = false }
113-
polars-time = { version = "0.40.0", path = "crates/polars-time", default-features = false }
114-
polars-utils = { version = "0.40.0", path = "crates/polars-utils", default-features = false }
96+
polars = { version = "0.41.0", path = "crates/polars", default-features = false }
97+
polars-compute = { version = "0.41.0", path = "crates/polars-compute", default-features = false }
98+
polars-core = { version = "0.41.0", path = "crates/polars-core", default-features = false }
99+
polars-error = { version = "0.41.0", path = "crates/polars-error", default-features = false }
100+
polars-expr = { version = "0.41.0", path = "crates/polars-expr", default-features = false }
101+
polars-ffi = { version = "0.41.0", path = "crates/polars-ffi", default-features = false }
102+
polars-io = { version = "0.41.0", path = "crates/polars-io", default-features = false }
103+
polars-json = { version = "0.41.0", path = "crates/polars-json", default-features = false }
104+
polars-lazy = { version = "0.41.0", path = "crates/polars-lazy", default-features = false }
105+
polars-mem-engine = { version = "0.41.0", path = "crates/polars-mem-engine", default-features = false }
106+
polars-ops = { version = "0.41.0", path = "crates/polars-ops", default-features = false }
107+
polars-parquet = { version = "0.41.0", path = "crates/polars-parquet", default-features = false }
108+
polars-pipe = { version = "0.41.0", path = "crates/polars-pipe", default-features = false }
109+
polars-plan = { version = "0.41.0", path = "crates/polars-plan", default-features = false }
110+
polars-row = { version = "0.41.0", path = "crates/polars-row", default-features = false }
111+
polars-sql = { version = "0.41.0", path = "crates/polars-sql", default-features = false }
112+
polars-stream = { version = "0.41.0", path = "crates/polars-stream", default-features = false }
113+
polars-time = { version = "0.41.0", path = "crates/polars-time", default-features = false }
114+
polars-utils = { version = "0.41.0", path = "crates/polars-utils", default-features = false }
115115

116116
[workspace.dependencies.arrow-format]
117117
package = "polars-arrow-format"
118118
version = "0.1.0"
119119

120120
[workspace.dependencies.arrow]
121121
package = "polars-arrow"
122-
version = "0.40.0"
122+
version = "0.41.0"
123123
path = "crates/polars-arrow"
124124
default-features = false
125125
features = [

crates/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ publish: ## Publish Polars crates
116116
cargo publish --allow-dirty -p polars-io
117117
cargo publish --allow-dirty -p polars-plan
118118
cargo publish --allow-dirty -p polars-expr
119+
cargo publish --allow-dirty -p polars-mem-engine
120+
cargo publish --allow-dirty -p polars-stream
119121
cargo publish --allow-dirty -p polars-pipe
120122
cargo publish --allow-dirty -p polars-lazy
121123
cargo publish --allow-dirty -p polars-sql

crates/polars-mem-engine/LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2020 Ritchie Vink
2+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all
12+
copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20+
SOFTWARE.

crates/polars-mem-engine/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# polars-mem-engine
2+
3+
`polars-mem-engine` is an **internal sub-crate** of the [Polars](https://crates.io/crates/polars) library.
4+
5+
**Important Note**: This crate is **not intended for external usage**. Please refer to the main [Polars crate](https://crates.io/crates/polars) for intended usage.

0 commit comments

Comments
 (0)