Skip to content

Commit

Permalink
0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
titsuki committed Feb 12, 2018
1 parent 9b0edde commit 378cfdd
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
/resources/*.so
/resources/*.dylib
.precomp/
/mecab-ipadic*
/mecab-*
*.so
*~
43 changes: 43 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
Revision history for MeCab

{{$NEXT}}

0.0.6 2018-02-12T20:31:45+09:00
- Fixes:
- Fix constructor to introduce 3rd-party dictionary such as mecab-ipadic-neologd [#19]
- Additions:
- Add description to introduce mecab-ipadic-neologd [#19]
- Efficiency:

0.0.5:
- Fixes:
- Use %vars<mecab> instead of if-else [#13]
- Use SPDX identifier in license field of META6.json [#14]
- Use zef instead of panda [#16]
- Additions:
- Efficiency:

0.0.4:
- Fixes:
- Delete both all-begin-nodes and all-end-nodes method, because they call internal functions
- Add MeCab::Lattice.begin-nodes and MeCab::Lattice.end-nodes methods
- Additions:
- Efficiency:

0.0.3:
- Fixes:
- Fix some typos
- Improve the documentation
- Make MeCab::Tagger.new multi method
- Additions:
- Efficiency:

0.0.2:
- Fixes:
- Fix some typos
- Make patch license more clearly
- Additions:
- Efficiency:

0.0.1:
- Initial release
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"source-url" : "git://github.com/titsuki/p6-MeCab.git",
"tags" : [ ],
"test-depends" : [ ],
"version" : "0.0.5"
"version" : "0.0.6"
}
4 changes: 2 additions & 2 deletions lib/MeCab.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use NativeCall;

my constant $library = %?RESOURCES<libraries/mecab>.Str;

class MeCab::Path is repr('CStruct') { ... }
class MeCab::Node is repr('CStruct') is export {
class MeCab::Path:auth<titsuki>:ver<0.0.6> is repr('CStruct') { ... }
class MeCab::Node:auth<titsuki>:ver<0.0.6> is repr('CStruct') is export {
enum Stat is export (
:MECAB_NOR_NODE(0),
:MECAB_UNK_NODE(1),
Expand Down
2 changes: 1 addition & 1 deletion lib/MeCab/DictionaryInfo.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class MeCab::DictionaryInfo is repr('CStruct');
unit class MeCab::DictionaryInfo:auth<titsuki>:ver<0.0.6> is repr('CStruct');

enum DictionaryInfoType is export (
:MECAB_SYS_DIC(0),
Expand Down
2 changes: 1 addition & 1 deletion lib/MeCab/Lattice.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use v6;
use NativeCall;
use experimental :pack;

unit class MeCab::Lattice is repr('CPointer');
unit class MeCab::Lattice:auth<titsuki>:ver<0.0.6> is repr('CPointer');

use MeCab;

Expand Down
2 changes: 1 addition & 1 deletion lib/MeCab/Model.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class MeCab::Model is repr('CPointer');
unit class MeCab::Model:auth<titsuki>:ver<0.0.6> is repr('CPointer');

use NativeCall;
use MeCab::Tagger;
Expand Down
2 changes: 1 addition & 1 deletion lib/MeCab/Tagger.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class MeCab::Tagger is repr('CPointer');
unit class MeCab::Tagger:auth<titsuki>:ver<0.0.6> is repr('CPointer');

use NativeCall;
use MeCab;
Expand Down

0 comments on commit 378cfdd

Please sign in to comment.