Skip to content

Commit 7fdaa43

Browse files
committed
Bump version to 1.0.5.
1 parent 6d47ff9 commit 7fdaa43

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ set (PACKAGE_URL https://github.com/BYVoid/Opencc)
3232
set (PACKAGE_BUGREPORT https://github.com/BYVoid/Opencc/issues)
3333
set (OPENCC_VERSION_MAJOR 1)
3434
set (OPENCC_VERSION_MINOR 0)
35-
set (OPENCC_VERSION_REVISION 4)
35+
set (OPENCC_VERSION_REVISION 5)
3636

3737
if (CMAKE_BUILD_TYPE MATCHES Debug)
3838
set (version_suffix .Debug)

NEWS.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change History of OpenCC
22

3+
## Version 1.0.5
4+
5+
2017年2月6日
6+
7+
* 修正Windows下CMake和Visual Studio的問題。
8+
* 修正FNV Hash的32位編譯警告。
9+
* 增加若干臺灣常用詞彙轉換和異體字轉換。
10+
* 增加和修正若干轉換問題。
11+
* 加快Node模塊編譯速度。
12+
* 增加Node模塊的詞典轉換接口和Promise接口。
13+
314
## Version 1.0.4
415

516
2016年4月1日

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,10 @@ https://github.com/BYVoid/OpenCC/blob/master/NEWS.md
166166
* [Flandre Scarlet](https://github.com/XadillaX)
167167
* [宋辰文](https://github.com/songchenwen)
168168
* [iwater](https://github.com/iwater)
169+
* [Xpol Wan](https://github.com/xpol)
170+
* [Weihang Lo](https://github.com/weihanglo)
171+
* [Cychih](https://github.com/pi314)
172+
* [kyleskimo](https://github.com/kyleskimo)
173+
* [Ryuan Choi](https://github.com/bunhere)
169174

170175
Please update this list you have contributed OpenCC.

node/global.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"opencc_version": "1.0.4"
3+
"opencc_version": "1.0.5"
44
},
55
"target_defaults": {
66
"defines": [

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "opencc",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Conversion between Traditional and Simplified Chinese",
55
"author": "BYVoid <byvoid@byvoid.com>",
6-
"license": "Apache",
6+
"license": "Apache-2.0",
77
"main": "node/opencc.js",
88
"scripts": {
99
"test": "mocha -R spec node/test.js"
@@ -27,6 +27,6 @@
2727
"mocha": "2.2.5"
2828
},
2929
"dependencies": {
30-
"nan": "^2.2.0"
30+
"nan": "^2.5.1"
3131
}
3232
}

0 commit comments

Comments
 (0)