Skip to content

Commit

Permalink
prepare for release v0.996.8 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 authored Jul 16, 2023
1 parent 617c12b commit fe324f9
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 17 deletions.
4 changes: 2 additions & 2 deletions 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.7])
AC_INIT([mecab],[0.996.8])
AC_CONFIG_SRCDIR([src/mecab.cpp])
AM_INIT_AUTOMAKE
AH_TEMPLATE([HAVE_CXX11_ATOMIC_OPS], [])
Expand All @@ -26,7 +26,7 @@ DIC_VERSION="102"
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
LTVERSION="2:1:0"
LTVERSION="2:2:0"
AC_SUBST(LTVERSION)

dnl Checks for programs.
Expand Down
22 changes: 12 additions & 10 deletions mecab/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ MeCab に至るまでの形態素解析器開発の歴史等は[こちら]({{<re

## 新着情報 {#news}

- **2023-07-15** MeCab 0.996.8
- [jumandicの助動詞・無活用型のエントリを修正](https://github.com/shogo82148/mecab/pull/96)
- **2023-05-28** MeCab 0.996.7
- [sprintfをsnprintfに置き換え](https://github.com/shogo82148/mecab/pull/93)
- [SWIG 4.1.1にアップデート](https://github.com/shogo82148/mecab/pull/91)
Expand Down Expand Up @@ -206,34 +208,34 @@ MeCab に至るまでの形態素解析器開発の歴史等は[こちら]({{<re

- **MeCab** はフリーソフトウェアです.[GPL v2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)(the GNU General Public License Version 2.0), [LGPL](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt)(Lesser GNU General Public License Version 2.1), または [三条項BSD](https://spdx.org/licenses/BSD-3-Clause.html) ライセンスに従って本ソフトウェアを使用,再配布することができます。 詳細は COPYING, GPL, LGPL, BSD各ファイルを参照して下さい.

- [v0.996.7](https://github.com/shogo82148/mecab/releases/tag/v0.996.7)
- [v0.996.8](https://github.com/shogo82148/mecab/releases/tag/v0.996.8)

### MeCab 本体

- Source
- mecab-0.996.7.tar.gz: [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-0.996.7.tar.gz)
- mecab-0.996.8.tar.gz: [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-0.996.8.tar.gz)
- 辞書は含まれていません. 動作には別途辞書が必要です。
- Binary package for MS-Windows
- mecab-msvc-x64-0.996.7.zip: [64bit版ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-msvc-x64-0.996.7.zip)
- mecab-msvc-x86-0.996.7.zip: [32bit版ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-msvc-x86-0.996.7.zip)
- mecab-msvc-x64-0.996.8.zip: [64bit版ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-msvc-x64-0.996.8.zip)
- mecab-msvc-x86-0.996.8.zip: [32bit版ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-msvc-x86-0.996.8.zip)
- Windows 版には コンパイル済みの IPA 辞書が含まれています

### MeCab 用の辞書

- IPA 辞書
- IPA 辞書, IPAコーパス に基づき [CRF][CRF] でパラメータ推定した辞書です。 **(推奨)** [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-ipadic-2.7.0-20070801.tar.gz)
- IPA 辞書, IPAコーパス に基づき [CRF][CRF] でパラメータ推定した辞書です。 **(推奨)** [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-ipadic-2.7.0-20070801.tar.gz)
- JUMAN 辞書
- JUMAN 辞書, 京都コーパスに基づき [CRF][CRF] でパラメータ推定した辞書です。 [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-jumandic-7.0-20130310.tar.gz)
- JUMAN 辞書, 京都コーパスに基づき [CRF][CRF] でパラメータ推定した辞書です。 [ダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-jumandic-7.0-20130310.tar.gz)
- Unidic 辞書
- Unidic 辞書, BCCWJコーパスに基づき CRF でパラーメータ推定した辞書です。[ダウンロード](https://clrd.ninjal.ac.jp/unidic/)

### perl/ruby/python/java バインディング

- [Perlダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-perl-0.996.7.tar.gz)
- [Rubyダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-ruby-0.996.7.tar.gz)
- [Pythonダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-python-0.996.7.tar.gz)
- [Perlダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-perl-0.996.8.tar.gz)
- [Rubyダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-ruby-0.996.8.tar.gz)
- [Pythonダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-python-0.996.8.tar.gz)
- Windowsに関してはコンパイル済みのwheelもあります。
- [Javaダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.7/mecab-java-0.996.7.tar.gz)
- [Javaダウンロード](https://github.com/shogo82148/mecab/releases/download/v0.996.8/mecab-java-0.996.8.tar.gz)

## インストール {#install}

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.7");
result = (char *)("0.996.8");
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.7");
result = (char *)("0.996.8");
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.7"));
sv_setsv(sv, SWIG_FromCharPtr("0.996.8"));
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.7"));
SWIG_Python_SetConstant(d, "VERSION",SWIG_FromCharPtr("0.996.8"));
#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.7"));
rb_define_const(mMeCab, "VERSION", SWIG_FromCharPtr("0.996.8"));
}

0 comments on commit fe324f9

Please sign in to comment.