Skip to content

Commit

Permalink
Bumped to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MeirKriheli committed Jul 30, 2024
1 parent 86f8a31 commit fc0bb57
Show file tree
Hide file tree
Showing 4 changed files with 6 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Meir Kriheli <[email protected]>"]
name = "python-bidi"
version = "0.5.2"
version = "0.6.0"
edition = "2021"

[lib]
Expand Down
4 changes: 3 additions & 1 deletion bidi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

__all__ = ["get_base_level", "get_display"]

VERSION = "0.5.2"
VERSION_TUPLE = (0, 6, 0)
VERSION = ".".join(str(x) for x in VERSION_TUPLE)


def main():
Expand Down Expand Up @@ -97,6 +98,7 @@ def main():
display_func = get_display
else:
from .algorithm import get_display as get_display_python

display_func = get_display_python
params["upper_is_rtl"] = options.upper_is_rtl

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "python-bidi"
version = "0.5.2"
version = "0.6.0"
readme = "README.rst"
keywords = ["bidi", "unicode", "layout"]
description = "Python Bidi layout wrapping the Rust crate unicode-bidi"
Expand Down

0 comments on commit fc0bb57

Please sign in to comment.