diff --git a/Changes b/Changes index 15b8fe6..d16f685 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/META6.json b/META6.json index 08155cf..c2ecd2a 100644 --- a/META6.json +++ b/META6.json @@ -32,5 +32,5 @@ ], "test-depends": [ ], - "version": "0.0.17" + "version": "0.0.18" } diff --git a/README.md b/README.md index e5cab8c..cbbdff4 100644 --- a/README.md +++ b/README.md @@ -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 ==== diff --git a/dist.ini b/dist.ini index 4a7120e..702e4dd 100644 --- a/dist.ini +++ b/dist.ini @@ -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] @@ -22,4 +22,4 @@ name = raku-MeCab ; filename = lib/Should/Not/List/Provides.rakumod [Badges] -provider = github-actions/test \ No newline at end of file +provider = github-actions/test diff --git a/lib/MeCab.pm6 b/lib/MeCab.pm6 index e17778c..76d7329 100644 --- a/lib/MeCab.pm6 +++ b/lib/MeCab.pm6 @@ -3,9 +3,9 @@ use NativeCall; my constant $library = %?RESOURCES.Str; -class MeCab:auth:ver<0.0.11> { } -class MeCab::Path:auth:ver<0.0.11> is repr('CStruct') { ... } -class MeCab::Node:auth:ver<0.0.11> is repr('CStruct') is export { +class MeCab:auth:ver<0.0.18> { } +class MeCab::Path:auth:ver<0.0.18> is repr('CStruct') { ... } +class MeCab::Node:auth:ver<0.0.18> is repr('CStruct') is export { enum Stat is export ( :MECAB_NOR_NODE(0), :MECAB_UNK_NODE(1), diff --git a/lib/MeCab/CustomBuilder.pm6 b/lib/MeCab/CustomBuilder.pm6 index 1ca84fb..05224aa 100644 --- a/lib/MeCab/CustomBuilder.pm6 +++ b/lib/MeCab/CustomBuilder.pm6 @@ -5,7 +5,7 @@ use Zef::Fetch; use Zef::Extract; use Distribution::Builder::MakeFromJSON; -class MeCab::CustomBuilder:auth:ver<0.0.17> is Distribution::Builder::MakeFromJSON { +class MeCab::CustomBuilder:auth:ver<0.0.18> is Distribution::Builder::MakeFromJSON { method build(IO() $work-dir = $*CWD) { my $workdir = ~$work-dir; if $*DISTRO.is-win { diff --git a/lib/MeCab/DictionaryInfo.pm6 b/lib/MeCab/DictionaryInfo.pm6 index 259173e..beac680 100644 --- a/lib/MeCab/DictionaryInfo.pm6 +++ b/lib/MeCab/DictionaryInfo.pm6 @@ -1,5 +1,5 @@ use v6; -unit class MeCab::DictionaryInfo:auth:ver<0.0.17> is repr('CStruct'); +unit class MeCab::DictionaryInfo:auth:ver<0.0.18> is repr('CStruct'); enum DictionaryInfoType is export ( :MECAB_SYS_DIC(0), diff --git a/lib/MeCab/Lattice.pm6 b/lib/MeCab/Lattice.pm6 index c696b77..5a74bc0 100644 --- a/lib/MeCab/Lattice.pm6 +++ b/lib/MeCab/Lattice.pm6 @@ -1,7 +1,7 @@ use v6; use NativeCall; -unit class MeCab::Lattice:auth:ver<0.0.17> is repr('CPointer'); +unit class MeCab::Lattice:auth:ver<0.0.18> is repr('CPointer'); use MeCab; diff --git a/lib/MeCab/Model.pm6 b/lib/MeCab/Model.pm6 index 3a08ddb..118f55e 100644 --- a/lib/MeCab/Model.pm6 +++ b/lib/MeCab/Model.pm6 @@ -1,5 +1,5 @@ use v6; -unit class MeCab::Model:auth:ver<0.0.17> is repr('CPointer'); +unit class MeCab::Model:auth:ver<0.0.18> is repr('CPointer'); use NativeCall; use MeCab::Tagger; diff --git a/lib/MeCab/Tagger.pm6 b/lib/MeCab/Tagger.pm6 index 707c2b9..b356fbf 100644 --- a/lib/MeCab/Tagger.pm6 +++ b/lib/MeCab/Tagger.pm6 @@ -1,5 +1,5 @@ use v6; -unit class MeCab::Tagger:auth:ver<0.0.17> is repr('CPointer'); +unit class MeCab::Tagger:auth:ver<0.0.18> is repr('CPointer'); use NativeCall; use MeCab;