diff --git a/README.md b/README.md index c13d7a9..562cef5 100644 --- a/README.md +++ b/README.md @@ -240,9 +240,11 @@ $ php .px_execute.php "/path/to/target/page_path.html?PX=px2dthelper.change_cont ## 更新履歴 - Change log -### pickles2/px2-px2dthelper 2.0.3 (2017年??月??日) +### pickles2/px2-px2dthelper 2.0.3 (2017年2月6日) - PXコマンド `PX=px2dthelper.get.all` を追加。 +- `paths_module_template` を絶対パスに整形してから返すようにした。 +- `$site` が利用できない場合に異常終了しないようにした。 ### pickles2/px2-px2dthelper 2.0.2 (2017年1月18日) diff --git a/composer.json b/composer.json index 2d756ff..f24caa5 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "php ./vendor/phpunit/phpunit/phpunit" ], "documentation": [ - "php ./vendor/phpdocumentor/phpdocumentor/bin/phpdoc --title \"px2-px2dthelper API Document\" -d \"./php/\" -t \"./doc/\"" + "php ./vendor/phpdocumentor/phpdocumentor/bin/phpdoc --title \"pickles2/px2-px2dthelper@2.0.3 API Document\" -d \"./php/\" -t \"./doc/\"" ] } , "repositories": [ diff --git a/php/main.php b/php/main.php index e5362a2..dde5688 100644 --- a/php/main.php +++ b/php/main.php @@ -52,7 +52,7 @@ static public function register($px){ * @return string バージョン番号を示す文字列 */ public function get_version(){ - return '2.0.3-alpha.1+nb'; + return '2.0.3'; }