@@ -83,6 +83,10 @@ MeCab に至るまでの形態素解析器開発の歴史等は[こちら]({{<re
8383
8484##新着情報 {#news}
8585
86+ - ** 2020-10-09** MeCab 0.996.5
87+ - [ C++11が利用可能な環境では` thread_local ` キーワードを利用] ( https://github.com/shogo82148/mecab/pull/54 )
88+ - [ C++11で非推奨,C++17で削除された` register ` キーワードを削除] ( https://github.com/shogo82148/mecab/pull/54 )
89+ - [ ` mecab_new ` が正しくエラーを返さない問題を修正] ( https://github.com/shogo82148/mecab/pull/53 )
8690- ** 2020-10-07** MeCab 0.996.4
8791- [ mingw-w64 でコンパイルできない問題を修正] ( https://github.com/shogo82148/mecab/pull/50 )
8892- ** 2020-02-21** MeCab 0.996.3
@@ -192,34 +196,34 @@ MeCab に至るまでの形態素解析器開発の歴史等は[こちら]({{<re
192196
193197- ** 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各ファイルを参照して下さい.
194198
195- - [ v0.996.4 ] ( https://github.com/shogo82148/mecab/releases/tag/v0.996.4 )
199+ - [ v0.996.5 ] ( https://github.com/shogo82148/mecab/releases/tag/v0.996.5 )
196200
197201###MeCab 本体
198202
199203- Source
200- - mecab-0.996.4 .tar.gz:[ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-0.996.4 .tar.gz )
204+ - mecab-0.996.5 .tar.gz:[ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-0.996.5 .tar.gz )
201205- 辞書は含まれていません. 動作には別途辞書が必要です。
202206- Binary package for MS-Windows
203- - mecab-msvc-x64-0.996.4 .zip:[ 64bit版ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-msvc-x64-0.996.4 .zip )
204- - mecab-msvc-x86-0.996.4 .zip:[ 32bit版ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-msvc-x86-0.996.4 .zip )
207+ - mecab-msvc-x64-0.996.5 .zip:[ 64bit版ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-msvc-x64-0.996.5 .zip )
208+ - mecab-msvc-x86-0.996.5 .zip:[ 32bit版ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-msvc-x86-0.996.5 .zip )
205209- Windows 版には コンパイル済みの IPA 辞書が含まれています
206210
207211###MeCab 用の辞書
208212
209213- IPA 辞書
210- - IPA 辞書, IPAコーパス に基づき[ CRF] [ CRF ] でパラメータ推定した辞書です。** (推奨)** [ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-ipadic-2.7.0-20070801.tar.gz )
214+ - IPA 辞書, IPAコーパス に基づき[ CRF] [ CRF ] でパラメータ推定した辞書です。** (推奨)** [ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-ipadic-2.7.0-20070801.tar.gz )
211215- JUMAN 辞書
212- - JUMAN 辞書, 京都コーパスに基づき[ CRF] [ CRF ] でパラメータ推定した辞書です。[ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-jumandic-7.0-20130310.tar.gz )
216+ - JUMAN 辞書, 京都コーパスに基づき[ CRF] [ CRF ] でパラメータ推定した辞書です。[ ダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-jumandic-7.0-20130310.tar.gz )
213217- Unidic 辞書
214218- Unidic 辞書, BCCWJコーパスに基づき CRF でパラーメータ推定した辞書です。ダウンロード
215219
216220###perl/ruby/python/java バインディング
217221
218- - [ Perlダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-perl-0.996.4 .tar.gz )
219- - [ Rubyダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-ruby-0.996.4 .tar.gz )
220- - [ Pythonダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-python-0.996.4 .tar.gz )
222+ - [ Perlダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-perl-0.996.5 .tar.gz )
223+ - [ Rubyダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-ruby-0.996.5 .tar.gz )
224+ - [ Pythonダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-python-0.996.5 .tar.gz )
221225- Windowsに関してはコンパイル済みのwheelもあります。
222- - [ Javaダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.4 /mecab-java-0.996.4 .tar.gz )
226+ - [ Javaダウンロード] ( https://github.com/shogo82148/mecab/releases/download/v0.996.5 /mecab-java-0.996.5 .tar.gz )
223227
224228##インストール {#install}
225229