Skip to content

Commit

Permalink
Release v1.11 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkufool authored Jan 14, 2024
1 parent 589f933 commit 8c7ec88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(textsearch)

set(TS_VERSION "0.10")
set(TS_VERSION "0.11")

set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fasttextsearch"
version = "0.10"
version = "0.11"
authors = [
{ name="Next-gen Kaldi development team", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion textsearch/python/textsearch/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Pathlike = Union[str, Path]

PUCTUATIONS = {
"all": set("'.;?!():-<>/\"。;?!():-《》【】”“"),
"all": set("'.,;?!():-<>/\";?!():-《》【】”“"),
"eos": set(".?,,!。?!"),
"left": set("\"'(<《【“"),
"right": set("\"')>》】”"),
Expand Down

0 comments on commit 8c7ec88

Please sign in to comment.