Skip to content

Commit 2c162c7

Browse files
committed
bump to v0.20.0
1 parent 3ee5513 commit 2c162c7

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.12)
22

3-
project(kiwi VERSION 0.19.1 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")
3+
project(kiwi VERSION 0.20.0 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")
44

55
set ( CMAKE_CXX_STANDARD 14 )
66
set ( CMAKE_VERBOSE_MAKEFILE true )

bindings/java/kr/pe/bab2min/Kiwi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
public class Kiwi implements AutoCloseable {
1414
private long _inst;
15-
final private static String _version = "0.19.1";
15+
final private static String _version = "0.20.0";
1616

1717
public static class Match {
1818
final static public int none = 0,

include/kiwi/Form.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file Form.h
33
* @author bab2min ([email protected])
44
* @brief 형태 및 형태소에 관한 정보를 담는 구조체들이 선언된 헤더
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-07-01
77
*
88
*

include/kiwi/Kiwi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file Kiwi.h
33
* @author bab2min ([email protected])
44
* @brief Kiwi C++ API를 담고 있는 헤더 파일
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-07-01
77
*
88
*

include/kiwi/Macro.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#define KIWI_STR(x) KIWI_STR_HELPER(x)
55

66
#define KIWI_VERSION_MAJOR 0
7-
#define KIWI_VERSION_MINOR 19
8-
#define KIWI_VERSION_PATCH 1
7+
#define KIWI_VERSION_MINOR 20
8+
#define KIWI_VERSION_PATCH 0
99

1010
#define KIWI_VERSION_STRING KIWI_STR(KIWI_VERSION_MAJOR) "." KIWI_STR(KIWI_VERSION_MINOR) "." KIWI_STR(KIWI_VERSION_PATCH)

include/kiwi/SwTokenizer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file SwTokenizer.h
33
* @author bab2min ([email protected])
44
* @brief Subword Tokenizer
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-07-01
77
*
88
*

include/kiwi/Types.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file Types.h
33
* @author bab2min ([email protected])
44
* @brief Kiwi C++ API에 쓰이는 주요 타입들을 모아놓은 헤더 파일
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-07-01
77
*
88
*

include/kiwi/TypoTransformer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file TypoTransformer.h
33
* @author bab2min ([email protected])
44
* @brief 오타 교정에 사용되는 TypoTransformer 및 관련 클래스들을 정의합니다.
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-09-15
77
*
88
*

include/kiwi/capi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file capi.h
33
* @author bab2min ([email protected])
44
* @brief Kiwi C API를 담고 있는 헤더 파일
5-
* @version 0.19.0
5+
* @version 0.20.0
66
* @date 2024-07-01
77
*
88
*

0 commit comments

Comments
 (0)