Skip to content

Commit

Permalink
bump to v0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Oct 18, 2024
1 parent 0d72a27 commit e371e0d
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.19.0 DESCRIPTION "Kiwi, Korean Intelligent Word Identifier")
project(kiwi VERSION 0.19.1 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.19.0";
final private static String _version = "0.19.1";

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 19
#define KIWI_VERSION_PATCH 0
#define KIWI_VERSION_PATCH 1

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

0 comments on commit e371e0d

Please sign in to comment.