Skip to content

Commit ddf43bc

Browse files
committed
Update PEAR package information
1 parent f2b70d5 commit ddf43bc

File tree

2 files changed

+163
-182
lines changed

2 files changed

+163
-182
lines changed

mecab/package.php

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,23 @@
1111
$description = $summary;
1212

1313
// information of cureent version
14-
$version = '0.5.0';
15-
$apiversion = '0.5.0';
14+
$version = '0.6.0';
15+
$apiversion = '0.6.0';
1616
$stability = 'beta';
1717
$apistability = 'beta';
1818

1919
$notes = <<<EOS
20-
- Added support for PHP 5.4.0.
21-
- Added support for MeCab 0.99.
20+
* Add support for PHP 7.
21+
* Add `MeCab` namespace classes and constants.
22+
* Non-namespace classes are not supported on PHP 7.
23+
* Non-namespace constants are not supported on PHP 7.
24+
* Procedural APIs (`mecab_*` functions) are not supported on PHP 7.
25+
* Non-namespace classes are deprecated on PHP 5.
26+
* PHP versions earlier than 5.3 are no longer supported.
27+
* MeCab versions earlier than 0.99 are no longer supported.
28+
* Removed features:
29+
* `\$filter` callback argument of `mecab_split()` function.
30+
* The persistent resource.
2231
EOS;
2332

2433
// set parameters to the package
@@ -33,7 +42,6 @@
3342
"{$packagename}-{$version}.tgz"),
3443
'dir_roles' => array(
3544
'tests' => 'test',
36-
'manual' => 'doc',
3745
'examples' => 'data'),
3846
'exceptions' => array(
3947
"{$packagename}.dsp" => 'src',
@@ -58,7 +66,7 @@
5866
$packagexml->setPackageType('extsrc');
5967
$packagexml->setProvidesExtension($packagename);
6068
$packagexml->addConfigureOption('with-mecab', 'specify pathname to mecab-config', 'no');
61-
$packagexml->setPhpDep('5.2.0');
69+
$packagexml->setPhpDep('5.3.0');
6270
$packagexml->setPearinstallerDep('1.4.1');
6371

6472
$packagexml->setChannel($channel);

0 commit comments

Comments
 (0)