Skip to content

Commit

Permalink
Merge pull request #80 from pola-rs/bump-version-0.15.2
Browse files Browse the repository at this point in the history
Bump version to 0.15.2
  • Loading branch information
MarcoGorelli authored Jul 25, 2024
2 parents 0f1b7a6 + 375474b commit 2974b98
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_xdt"
version = "0.15.1"
version = "0.15.2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,7 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.21.2", features = ["extension-module", "abi3-py38"] }
pyo3-polars = { version = "0.15.1", features = ["derive"] }
pyo3-polars = { version = "0.15.0", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4.38", default-features = false, features = ["std", "unstable-locales"] }
chrono-tz = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

with open("Cargo.toml", "r", encoding="utf-8") as f:
content = f.read()
old_version = re.search(r'(?<! )version = "(.*)"', content).group(1)
old_version = re.search(r'^version = "(.*)"', content, re.MULTILINE).group(1)
version = old_version.split(".")
if how == "patch":
version = ".".join(version[:-1] + [str(int(version[-1]) + 1)])
Expand Down

0 comments on commit 2974b98

Please sign in to comment.