We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c30b1 commit 580b35eCopy full SHA for 580b35e
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "werx"
3
-version = "0.1.0"
+version = "0.1.1"
4
description = "A high-performance Python package for calculating Word Error Rate (WER), powered by Rust."
5
readme = "README.md"
6
authors = [
src/werx/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.1.0"
+__version__ = "0.1.1"
from .wer import wer
__all__ = ["wer"]
werx-core/Cargo.toml
[package]
name = "werx_rust" # <-- Rust crate name
edition = "2021"
resolver = "2" # <-- Avoid compiling unnecessary features from dependencies.
0 commit comments