Skip to content

Commit 26f9362

Browse files
committed
Fix author information using default email, bump to 1.0.1
1 parent 9e9c081 commit 26f9362

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py_evalexpr"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Benjamin Kiiskila <b.kiiskila@example.com>"]
66
description = "Python bindings for evalexpr Rust crate for safe expression evaluation"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "maturin"
66
name = "py_evalexpr"
77
requires-python = ">=3.11"
88
authors = [
9-
{name = "Benjamin Kiiskila", email = "b.kiiskila@example.com"},
9+
{name = "Benjamin Kiiskila", email = "benjaminckiiskila@gmail.com"},
1010
]
1111
description = "Python bindings for evalexpr Rust crate for safe expression evaluation"
1212
readme = "README.MD"

python/py_evalexpr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Repository: https://github.com/b-kiiskila/py_evalexpr
1616
"""
1717

18-
__version__ = "1.0.0"
18+
__version__ = "1.0.1"
1919

2020
from . import natives
2121

0 commit comments

Comments
 (0)