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

Commit ec17316

Browse files
committed
[versionup] 0.8.2 -> 0.8.3
1 parent 210704d commit ec17316

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

python/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[package]
22
name = "pytokenizations"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
authors = ["Yohei Tamura <tamuhey@gmail.com>"]
55
edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
tokenizations = "^0.4.0"
11-
10+
tokenizations = "0.4.2"
1211

1312
[lib]
1413
name = "tokenizations"

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.2"
13+
version = "0.8.3"
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.2")?;
7+
m.add("__version__", "0.8.3")?;
88

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

0 commit comments

Comments
 (0)