Skip to content

Commit

Permalink
prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
ariebovenberg committed Jul 16, 2024
1 parent de664e7 commit 93ac643
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 97 deletions.
99 changes: 9 additions & 90 deletions Cargo.lock

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

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "whenever"
version = "0.6.4"
version = "0.1.0" # Dummy value. Isn't actually used in distribution of the Python package
authors = []
description = "Rust extension module for whenever"
edition = "2021"
Expand All @@ -22,16 +22,14 @@ include = [
name = "_whenever"
crate-type = ["cdylib", "rlib"]

[features]
extension-module = ["pyo3/extension-module"]

[[bench]]
name = "benchmarks"
path = "benchmarks/rust/main.rs"

[dependencies]
pyo3-ffi = { version = "^0.22.0", default-features = false, features = ["extension-module"]}
pyo3 = { version = "^0.22.0", features = ["extension-module"] }
# FUTURE: can we remove this? Currently seems we cannot configure setuptools-rust without it
pyo3 = { version = "^0.22.0", default-features = false, features = ["extension-module"] }

[build-dependencies]
pyo3-build-config = { version = "^0.22.0" }
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [
{name = "Arie Bovenberg", email = "a.c.bovenberg@gmail.com"},
]
readme = "README.md"
version = "0.6.4"
version = "0.6.4rc0"
description = "Modern datetime library for Python, written in Rust"
requires-python = ">=3.9"
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion pysrc/whenever/_pywhenever.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# - It saves some overhead
from __future__ import annotations

__version__ = "0.6.4"
__version__ = "0.6.4rc0"

import enum
import re
Expand Down

0 comments on commit 93ac643

Please sign in to comment.