Skip to content

Commit

Permalink
polars 0.21.1 (#3300)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed May 4, 2022
1 parent e3a531b commit b796cf9
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 35 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- master
pull_request:
paths:
- 'polars/**'
- 'py-polars/**'

jobs:
coverage:
Expand Down
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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
keywords = ["dataframe", "query-engine", "arrow"]
Expand Down Expand Up @@ -234,11 +234,11 @@ bench = [
]

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

[dev-dependencies]
ahash = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -156,8 +156,8 @@ jsonpath_lib = { version = "0.3.0", optional = true, git = "https://github.com/r
lazy_static = "1.4"
ndarray = { version = "0.15", optional = true, default_features = false }
num = "^0.4"
polars-arrow = { version = "0.21.0", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.21.0", path = "../polars-utils" }
polars-arrow = { version = "0.21.1", path = "../polars-arrow", features = ["compute"] }
polars-utils = { version = "0.21.1", path = "../polars-utils" }
rand = { version = "0.8", optional = true, features = ["small_rng", "std"] }
rand_distr = { version = "0.4", optional = true }
rayon = "1.5"
Expand Down
10 changes: 5 additions & 5 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -45,10 +45,10 @@ lexical = { version = "6", optional = true, default-features = false, features =
memchr = "2.4"
memmap = { package = "memmap2", version = "0.5.2", optional = true }
num = "^0.4"
polars-arrow = { version = "0.21.0", path = "../polars-arrow" }
polars-core = { version = "0.21.0", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.21.0", path = "../polars-time", features = ["private"], default-features = false }
polars-utils = { version = "0.21.0", path = "../polars-utils" }
polars-arrow = { version = "0.21.1", path = "../polars-arrow" }
polars-core = { version = "0.21.1", path = "../polars-core", features = ["private"], default-features = false }
polars-time = { version = "0.21.1", path = "../polars-time", features = ["private"], default-features = false }
polars-utils = { version = "0.21.1", path = "../polars-utils" }
rayon = "1.5"
regex = "1.5"
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
12 changes: 6 additions & 6 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -98,11 +98,11 @@ rayon = "1.5"
regex = { version = "1.5", optional = true }
serde = { version = "1", features = ["derive"], optional = true }

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

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ 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-core = { version = "0.21.0", path = "../polars-core", features = ["private"], default-features = false }
polars-core = { version = "0.21.1", path = "../polars-core", features = ["private"], default-features = false }

[features]
dtype-categorical = ["polars-core/dtype-categorical"]
Expand Down
6 changes: 3 additions & 3 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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,8 +11,8 @@ 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.21.0", path = "../polars-arrow", features = ["compute"] }
polars-core = { version = "0.21.0", path = "../polars-core", features = ["temporal", "dtype-date", "dtype-datetime"] }
polars-arrow = { version = "0.21.1", path = "../polars-arrow", features = ["compute"] }
polars-core = { version = "0.21.1", path = "../polars-core", features = ["temporal", "dtype-date", "dtype-datetime"] }
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.21.0"
version = "0.21.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
16 changes: 8 additions & 8 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 b796cf9

Please sign in to comment.