Skip to content

Commit

Permalink
Bump version to 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed May 22, 2020
1 parent a4e3fed commit 1f26d58
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ set (PACKAGE_URL https://github.com/BYVoid/Opencc)
set (PACKAGE_BUGREPORT https://github.com/BYVoid/Opencc/issues)
set (OPENCC_VERSION_MAJOR 1)
set (OPENCC_VERSION_MINOR 1)
set (OPENCC_VERSION_REVISION 0)
set (OPENCC_VERSION_REVISION 1)

if (CMAKE_BUILD_TYPE MATCHES Debug)
set (version_suffix .Debug)
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change History of OpenCC

## Version 1.1.1

2020年5月22日

* 正式提供[Python](https://pypi.org/project/OpenCC/)接口和TypeScript類型標註。
* 更新動態鏈接庫`SOVERSION``1.1`,由於C++內部接口發生變更。
* 進一步改進與Windows MSVC的兼容性。
* 簡化頭文件結構,加快編譯速度。刪除不必要的`using`
* 修復部分香港標準字。

## Version 1.1.0

2020年5月10日
Expand Down
2 changes: 1 addition & 1 deletion node/global.gypi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"opencc_version": "1.1.0"
"opencc_version": "1.1.1"
},
"target_defaults": {
"defines": [
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opencc",
"version": "1.1.0-3",
"version": "1.1.1",
"description": "Conversion between Traditional and Simplified Chinese",
"author": "Carbo Kuo <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 0 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ def get_version_info():
elif match.group(1) == 'REVISION':
version_info[2] = match.group(2)
version = '.'.join(version_info)
# Remove the next line in the next version.
version += '-1'
return version


Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ set_target_properties(
OUTPUT_NAME
opencc
VERSION
1.1.0
1.1.1
SOVERSION
1.1
)
Expand Down

0 comments on commit 1f26d58

Please sign in to comment.