Skip to content

Commit

Permalink
bump version to 0.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Dec 17, 2024
1 parent 7a26d4d commit 9383105
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,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)

project(kiwi VERSION 0.20.2 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")
project(kiwi VERSION 0.20.3 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.20.2";
final private static String _version = "0.20.3";

public static class Match {
final static public int none = 0,
Expand Down
2 changes: 1 addition & 1 deletion include/kiwi/Macro.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

#define KIWI_VERSION_MAJOR 0
#define KIWI_VERSION_MINOR 20
#define KIWI_VERSION_PATCH 2
#define KIWI_VERSION_PATCH 3

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

0 comments on commit 9383105

Please sign in to comment.