Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Commit e40a4d4

Browse files
committed
[versionup] 0.7.2 -> 0.8.0
1 parent f84a4d7 commit e40a4d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pytokenizations"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors = ["Yohei Tamura <[email protected]>"]
55
edition = "2018"
66

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tag_prefix = "python/"
1010

1111
[tool.poetry]
1212
name = "pytokenizations"
13-
version = "0.7.2"
13+
version = "0.8.0"
1414
description = ""
1515
authors = [ "Yohei Tamura <[email protected]>",]
1616
[[tool.poetry.packages]]

python/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use tokenizations::{get_alignments, get_charmap, get_original_spans, Alignment,
44

55
#[pymodule]
66
fn tokenizations(_py: Python, m: &PyModule) -> PyResult<()> {
7-
m.add("__version__", "0.7.2")?;
7+
m.add("__version__", "0.8.0")?;
88

99
#[pyfn(m, "get_alignments")]
1010
pub fn get_alignments_py(

0 commit comments

Comments
 (0)