Skip to content

Commit

Permalink
0.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
titsuki committed Dec 16, 2022
1 parent 1a9eeec commit d58822a
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Revision history for MeCab

{{$NEXT}}

0.0.18 2022-12-17T02:09:24+09:00
- Fixes:
- Upload to zef instead of cpan
- Additions:
- Efficiency:

0.0.17 2019-12-24T00:29:29+09:00
- Fixes:
- Fix source-url field
Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
],
"test-depends": [
],
"version": "0.0.17"
"version": "0.0.18"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/titsuki/raku-MeCab.svg?branch=master)](https://travis-ci.org/titsuki/raku-MeCab)
[![Actions Status](https://github.com/titsuki/raku-MeCab/workflows/test/badge.svg)](https://github.com/titsuki/raku-MeCab/actions)

NAME
====
Expand Down
4 changes: 2 additions & 2 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = raku-MeCab
; enable = false
;
; if you want to change a file that generates README.md, then:
; filename = lib/Your/Tutorial.pod
filename = lib/MeCab.pm6

[UploadToZef]

Expand All @@ -22,4 +22,4 @@ name = raku-MeCab
; filename = lib/Should/Not/List/Provides.rakumod

[Badges]
provider = github-actions/test
provider = github-actions/test
6 changes: 3 additions & 3 deletions lib/MeCab.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use NativeCall;

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

class MeCab:auth<zef:titsuki>:ver<0.0.11> { }
class MeCab::Path:auth<zef:titsuki>:ver<0.0.11> is repr('CStruct') { ... }
class MeCab::Node:auth<zef:titsuki>:ver<0.0.11> is repr('CStruct') is export {
class MeCab:auth<zef:titsuki>:ver<0.0.18> { }
class MeCab::Path:auth<zef:titsuki>:ver<0.0.18> is repr('CStruct') { ... }
class MeCab::Node:auth<zef:titsuki>:ver<0.0.18> 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/CustomBuilder.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Zef::Fetch;
use Zef::Extract;
use Distribution::Builder::MakeFromJSON;

class MeCab::CustomBuilder:auth<zef:titsuki>:ver<0.0.17> is Distribution::Builder::MakeFromJSON {
class MeCab::CustomBuilder:auth<zef:titsuki>:ver<0.0.18> is Distribution::Builder::MakeFromJSON {
method build(IO() $work-dir = $*CWD) {
my $workdir = ~$work-dir;
if $*DISTRO.is-win {
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:auth<zef:titsuki>:ver<0.0.17> is repr('CStruct');
unit class MeCab::DictionaryInfo:auth<zef:titsuki>:ver<0.0.18> 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
@@ -1,7 +1,7 @@
use v6;
use NativeCall;

unit class MeCab::Lattice:auth<zef:titsuki>:ver<0.0.17> is repr('CPointer');
unit class MeCab::Lattice:auth<zef:titsuki>:ver<0.0.18> 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:auth<zef:titsuki>:ver<0.0.17> is repr('CPointer');
unit class MeCab::Model:auth<zef:titsuki>:ver<0.0.18> 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:auth<zef:titsuki>:ver<0.0.17> is repr('CPointer');
unit class MeCab::Tagger:auth<zef:titsuki>:ver<0.0.18> is repr('CPointer');

use NativeCall;
use MeCab;
Expand Down

0 comments on commit d58822a

Please sign in to comment.