Skip to content

Commit

Permalink
bump to 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Jun 30, 2024
1 parent 0a3dd18 commit 5ceb545
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)

project(kiwi VERSION 0.17.1 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")
project(kiwi VERSION 0.18.0 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")

set ( CMAKE_CXX_STANDARD 14 )
set ( CMAKE_VERBOSE_MAKEFILE true )
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/kr/pe/bab2min/Kiwi.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public class Kiwi implements AutoCloseable {
private long _inst;
final private static String _version = "0.17.1";
final private static String _version = "0.18.0";

public static class Match {
final static public int none = 0,
Expand Down
4 changes: 2 additions & 2 deletions include/kiwi/Form.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @file Form.h
* @author bab2min ([email protected])
* @brief 형태 및 형태소에 관한 정보를 담는 구조체들이 선언된 헤더
* @version 0.17.0
* @date 2022-09-01
* @version 0.18.0
* @date 2024-07-01
*
*
*/
Expand Down
4 changes: 2 additions & 2 deletions include/kiwi/Kiwi.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @file Kiwi.h
* @author bab2min ([email protected])
* @brief Kiwi C++ API를 담고 있는 헤더 파일
* @version 0.17.0
* @date 2022-09-01
* @version 0.18.0
* @date 2024-07-01
*
*
*/
Expand Down
4 changes: 2 additions & 2 deletions include/kiwi/Macro.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define KIWI_STR(x) KIWI_STR_HELPER(x)

#define KIWI_VERSION_MAJOR 0
#define KIWI_VERSION_MINOR 17
#define KIWI_VERSION_PATCH 1
#define KIWI_VERSION_MINOR 18
#define KIWI_VERSION_PATCH 0

#define KIWI_VERSION_STRING KIWI_STR(KIWI_VERSION_MAJOR) "." KIWI_STR(KIWI_VERSION_MINOR) "." KIWI_STR(KIWI_VERSION_PATCH)
4 changes: 2 additions & 2 deletions include/kiwi/SwTokenizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @file SwTokenizer.h
* @author bab2min ([email protected])
* @brief Subword Tokenizer
* @version 0.16.1
* @date 2022-07-28
* @version 0.18.0
* @date 2024-07-01
*
*
*/
Expand Down
4 changes: 2 additions & 2 deletions include/kiwi/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @file Types.h
* @author bab2min ([email protected])
* @brief Kiwi C++ API에 쓰이는 주요 타입들을 모아놓은 헤더 파일
* @version 0.17.0
* @date 2022-09-01
* @version 0.18.0
* @date 2024-07-01
*
*
*/
Expand Down
6 changes: 3 additions & 3 deletions include/kiwi/capi.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
/**
* @file capi.h
* @author bab2min ([email protected])
* @brief Kiwi C API를 담고 있는 헤더 파일
* @version 0.17.0
* @date 2022-09-01
* @version 0.18.0
* @date 2024-07-01
*
*
*/
Expand Down

0 comments on commit 5ceb545

Please sign in to comment.