Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for releasing v0.996.9 #103

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mecab/configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mecab],[0.996.8])
AC_INIT([mecab],[0.996.9])
AC_CONFIG_SRCDIR([src/mecab.cpp])
AM_INIT_AUTOMAKE
AH_TEMPLATE([HAVE_CXX11_ATOMIC_OPS], [])
Expand Down
3 changes: 3 additions & 0 deletions mecab/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ MeCab に至るまでの形態素解析器開発の歴史等は[こちら]({{<re

## 新着情報 {#news}

- **2023-11-25** MeCab 0.996.9
- [C++11で非推奨,C++17で削除された `std::binary_function` を削除](https://github.com/shogo82148/mecab/pull/102)
- [Python 3.12, 3.11, 3.10, 3.9 向けの wheel 追加、Python 3.7, 3.6向けの wheelを削除](https://github.com/shogo82148/mecab/pull/101)
- **2023-07-15** MeCab 0.996.8
- [jumandicの助動詞・無活用型のエントリを修正](https://github.com/shogo82148/mecab/pull/96)
- **2023-05-28** MeCab 0.996.7
Expand Down
2 changes: 1 addition & 1 deletion mecab/csharp/MeCab_wrap.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3220,7 +3220,7 @@ SWIGEXPORT char * SWIGSTDCALL CSharp_MeCab_VERSION_get() {
char * jresult ;
char *result = 0 ;

result = (char *)("0.996.8");
result = (char *)("0.996.9");
jresult = SWIG_csharp_string_callback((const char *)result);
return jresult;
}
Expand Down
2 changes: 1 addition & 1 deletion mecab/java/MeCab_wrap.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3571,7 +3571,7 @@ SWIGEXPORT jstring JNICALL Java_org_chasen_mecab_MeCabJNI_VERSION_1get(JNIEnv *j

(void)jenv;
(void)jcls;
result = (char *)("0.996.8");
result = (char *)("0.996.9");
if (result) jresult = jenv->NewStringUTF((const char *)result);
return jresult;
}
Expand Down
2 changes: 1 addition & 1 deletion mecab/perl/MeCab_wrap.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -7328,7 +7328,7 @@ XS(SWIG_init) {
SWIG_TypeClientData(SWIGTYPE_p_MeCab__Tagger, (void*) "MeCab::Tagger");
/*@SWIG:/opt/homebrew/Cellar/swig/4.1.1/share/swig/4.1.1/perl5/perltypemaps.swg,67,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "VERSION", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("0.996.8"));
sv_setsv(sv, SWIG_FromCharPtr("0.996.9"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
ST(0) = &PL_sv_yes;
Expand Down
2 changes: 1 addition & 1 deletion mecab/python/MeCab_wrap.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -8245,7 +8245,7 @@ SWIG_init(void) {
SWIG_Python_SetConstant(d, "MECAB_ANY_BOUNDARY",SWIG_From_int(static_cast< int >(MECAB_ANY_BOUNDARY)));
SWIG_Python_SetConstant(d, "MECAB_TOKEN_BOUNDARY",SWIG_From_int(static_cast< int >(MECAB_TOKEN_BOUNDARY)));
SWIG_Python_SetConstant(d, "MECAB_INSIDE_TOKEN",SWIG_From_int(static_cast< int >(MECAB_INSIDE_TOKEN)));
SWIG_Python_SetConstant(d, "VERSION",SWIG_FromCharPtr("0.996.8"));
SWIG_Python_SetConstant(d, "VERSION",SWIG_FromCharPtr("0.996.9"));
#if PY_VERSION_HEX >= 0x03000000
return m;
#else
Expand Down
2 changes: 1 addition & 1 deletion mecab/ruby/MeCab_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6755,6 +6755,6 @@ SWIGEXPORT void Init_MeCab(void) {
SwigClassTagger.mark = 0;
SwigClassTagger.destroy = (void (*)(void *)) free_MeCab_Tagger;
SwigClassTagger.trackObjects = 0;
rb_define_const(mMeCab, "VERSION", SWIG_FromCharPtr("0.996.8"));
rb_define_const(mMeCab, "VERSION", SWIG_FromCharPtr("0.996.9"));
}

Loading