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

Commit 34dbb11

Browse files
committed
[versionup] 0.8.1 -> 0.8.2
1 parent 807870c commit 34dbb11

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.8.1"
3+
version = "0.8.2"
44
authors = ["Yohei Tamura <tamuhey@gmail.com>"]
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.8.1"
13+
version = "0.8.2"
1414
description = ""
1515
authors = [ "Yohei Tamura <tamuhey@gmail.com>",]
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, Alignment, CharMap};
44

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

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

0 commit comments

Comments
 (0)