Skip to content

Commit ea02457

Browse files
authored
Bump up version to 0.41.0 (#65)
1 parent 7421fe2 commit ea02457

File tree

3 files changed

+138
-34
lines changed

3 files changed

+138
-34
lines changed

Cargo.lock

Lines changed: 119 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lindera-py"
3-
version = "0.40.2"
3+
version = "0.41.0"
44
edition = "2021"
55
description = "Python binding for Lindera."
66
documentation = "https://docs.rs/lindera-py"
@@ -17,21 +17,28 @@ path = "src/lib.rs"
1717
crate-type = ["cdylib"]
1818

1919
[features]
20-
default = [] # No directories included
21-
ipadic = ["lindera/ipadic"] # Include IPADIC dictionary (Japanese)
22-
ipadic-neologd = ["lindera/ipadic-neologd"] # Include IPADIC NEologd dictionary (Japanese)
23-
unidic = ["lindera/unidic"] # Include UniDic dictionary (Japanese)
24-
ko-dic = ["lindera/ko-dic"] # Include ko-dic dictionary (Korean)
25-
cc-cedict = ["lindera/cc-cedict"] # Include CC-CEDICT dictionary (Chinese)
26-
compress = ["lindera/compress"] # Compress dictionaries
27-
cjk = ["ipadic", "ko-dic", "cc-cedict", "compress"] # Include CJK dictionary (Chinese, Japanese, Korean)
20+
default = [] # No directories included
21+
ipadic = ["lindera/ipadic"] # Include IPADIC dictionary (Japanese)
22+
ipadic-neologd = [
23+
"lindera/ipadic-neologd",
24+
] # Include IPADIC NEologd dictionary (Japanese)
25+
unidic = ["lindera/unidic"] # Include UniDic dictionary (Japanese)
26+
ko-dic = ["lindera/ko-dic"] # Include ko-dic dictionary (Korean)
27+
cc-cedict = ["lindera/cc-cedict"] # Include CC-CEDICT dictionary (Chinese)
28+
compress = ["lindera/compress"] # Compress dictionaries
29+
cjk = [
30+
"ipadic",
31+
"ko-dic",
32+
"cc-cedict",
33+
"compress",
34+
] # Include CJK dictionary (Chinese, Japanese, Korean)
2835

2936
[dependencies]
3037
pyo3 = { version = "0.24.1", features = ["extension-module"] }
3138
serde = { version = "1.0.219", features = ["derive"] }
3239
serde_json = "1.0.134"
3340

34-
lindera = "0.40.2"
41+
lindera = "0.41.0"
3542

3643
[target.'cfg(target_os = "linux")'.dependencies]
37-
openssl = { version = "0.10.71", features = ["vendored"] }
44+
openssl = { version = "0.10.72", features = ["vendored"] }

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "lindera_py"
3-
version = "0.40.2"
3+
version = "0.41.0"
44
description = ""
55
authors = ["Minoru Osuka <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)