Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jan 22, 2024
1 parent 0055d20 commit d7d805a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_xdt"
version = "0.10.1"
version = "0.11.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
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).group(1)
version = old_version.split(".")
if how == "patch":
version = ".".join(version[:-1] + [str(int(version[-1]) + 1)])
Expand Down

0 comments on commit d7d805a

Please sign in to comment.