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

Commit

Permalink
[versionup] 0.8.0 -> 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tamuhey committed Feb 1, 2021
1 parent 0684a5f commit 4674b40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pytokenizations"
version = "0.8.0"
version = "0.8.1"
authors = ["Yohei Tamura <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tag_prefix = "python/"

[tool.poetry]
name = "pytokenizations"
version = "0.8.0"
version = "0.8.1"
description = ""
authors = [ "Yohei Tamura <[email protected]>",]
[[tool.poetry.packages]]
Expand Down
2 changes: 1 addition & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tokenizations::{get_alignments, get_charmap, Alignment, CharMap};

#[pymodule]
fn tokenizations(_py: Python, m: &PyModule) -> PyResult<()> {
m.add("__version__", "0.8.0")?;
m.add("__version__", "0.8.1")?;

#[pyfn(m, "get_alignments")]
pub fn get_alignments_py(
Expand Down

0 comments on commit 4674b40

Please sign in to comment.