Skip to content

Commit c5f0f25

Browse files
committed
bump version
1 parent 29dc1db commit c5f0f25

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/polars-python/src/c_api/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub mod allocator;
44
// Since Python Polars cannot share its version into here and we need to be able to build this
55
// package correctly without `py-polars`, we need to mirror the version here.
66
// example: 1.35.0-beta.1
7-
pub static PYPOLARS_VERSION: &str = "1.35.1";
7+
pub static PYPOLARS_VERSION: &str = "1.35.2";
88
pub static RUNTIME_REPR: &str = "unknown";
99

1010
use pyo3::prelude::*;

py-polars/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
{ name = "Ritchie Vink", email = "[email protected]" },
1111
]
1212
# example: 1.35.0b1
13-
version = "1.35.1"
13+
version = "1.35.2"
1414
license = { file = "LICENSE" }
1515
requires-python = ">=3.9"
1616

@@ -34,7 +34,7 @@ classifiers = [
3434
"Typing :: Typed",
3535
]
3636
# example: 1.35.0b1
37-
dependencies = ["polars-runtime-32 == 1.35.1"]
37+
dependencies = ["polars-runtime-32 == 1.35.2"]
3838

3939
[project.urls]
4040
Homepage = "https://www.pola.rs/"
@@ -45,8 +45,8 @@ Changelog = "https://github.com/pola-rs/polars/releases"
4545
[project.optional-dependencies]
4646
# Runtimes
4747
# example: 1.35.0b1
48-
rt64 = ["polars-runtime-64 == 1.35.1"]
49-
rtcompat = ["polars-runtime-compat == 1.35.1"]
48+
rt64 = ["polars-runtime-64 == 1.35.2"]
49+
rtcompat = ["polars-runtime-compat == 1.35.2"]
5050

5151
# NOTE: keep this list in sync with show_versions() and requirements-dev.txt
5252
polars_cloud = ["polars_cloud >= 0.0.1a1"]

py-polars/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "py-polars"
33
# example: 1.35.0-beta.1
4-
version = "1.35.1"
4+
version = "1.35.2"
55
edition = "2021"
66

77
[lib]

py-polars/src/polars/_plr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from polars._cpu_check import check_cpu_flags
99

1010
# example: 1.35.0-beta.1
11-
PKG_VERSION = "1.35.1"
11+
PKG_VERSION = "1.35.2"
1212

1313

1414
def rt_compat() -> None:

0 commit comments

Comments
 (0)