diff --git a/.ci/win-ci-tools.psm1 b/.ci/win-ci-tools.psm1
index 19869b11..2d63a637 100644
--- a/.ci/win-ci-tools.psm1
+++ b/.ci/win-ci-tools.psm1
@@ -299,7 +299,7 @@ function EnableExtension {
Copy-Item -Path "${env:RELEASE_DLL_PATH}" -Destination "${env:PHPROOT}\ext\"
- Enable-PhpExtension -Extension 'Zephir Parser' -Path "${env:PHPROOT}"
+ Enable-PhpExtension -Extension zephir_parser -Path "${env:PHPROOT}"
}
function PrepareReleasePackage {
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d8d4722e..7faf9ccc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -165,7 +165,7 @@ jobs:
- name: Run Tests
if: matrix.arch == 'x64'
run: |
- & ${env:TEST_PHP_EXECUTABLE} --ri 'Zephir Parser'
+ & ${env:TEST_PHP_EXECUTABLE} --ri zephir_parser
& ${env:TEST_PHP_EXECUTABLE} run-tests.php
- name: Prepare Release Package
@@ -321,7 +321,7 @@ jobs:
- name: Run Tests
run: |
- php -d extension=./modules/zephir_parser.so --ri 'Zephir Parser'
+ php -d extension=./modules/zephir_parser.so --ri zephir_parser
make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1
- name: Print failures
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f777c233..721e6398 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [1.4.1] - 2021-09-18
+### Changed
+- Renamed extension name from `Zephir Parser` to `zephir_parser` [#125](https://github.com/phalcon/php-zephir-parser/issues/125)
+
## [1.4.0] - 2021-09-18
### Added
- Added support for `mixed` type [#120](https://github.com/phalcon/php-zephir-parser/issues/120)
@@ -173,7 +177,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Initial stable release
-[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.0...HEAD
+[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.1...HEAD
+[1.4.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.8...v1.4.0
[1.3.8]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.7...v1.3.8
[1.3.7]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.6...v1.3.7
diff --git a/VERSION b/VERSION
index 88c5fb89..347f5833 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.4.0
+1.4.1
diff --git a/package.xml b/package.xml
index 8a7a31b2..312ee067 100644
--- a/package.xml
+++ b/package.xml
@@ -13,10 +13,10 @@
yes
2021-09-18
-
+
- 1.4.0
- 1.4.0
+ 1.4.1
+ 1.4.1
stable
@@ -24,12 +24,11 @@
MIT
- Sat, Sep 18, 2021 - Zephir Parser 1.4.0
+ Sat, Sep 18, 2021 - Zephir Parser 1.4.1
- = New features:
+ = Changes:
- - Fixed issue #120: Add support for `mixed` type
- - Fixed issue #118: Add support for `yield` statement
+ - Fixed issue #125: Renamed extension name from `Zephir Parser` to `zephir_parser`
@@ -43,6 +42,162 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tests/base/extension_info.phpt b/tests/base/extension_info.phpt
index 79e55438..e74f66a2 100644
--- a/tests/base/extension_info.phpt
+++ b/tests/base/extension_info.phpt
@@ -11,7 +11,7 @@ function contains($input, $expected) {
: 'not contains';
}
-$version = phpversion('Zephir Parser');
+$version = phpversion('zephir_parser');
$actual = trim(file_get_contents(__DIR__ . '/../../VERSION'));
$compare = $version === $actual;
@@ -23,7 +23,7 @@ $info = trim(ob_get_clean());
echo contains($info, 'Zephir Parser').PHP_EOL;
echo contains($info, 'The Zephir Parser delivered as a C extension for the PHP language.').PHP_EOL;
-echo contains($info, 'Zephir Parser => enabled').PHP_EOL;
+echo contains($info, 'zephir_parser => enabled').PHP_EOL;
echo contains($info, 'Author => Zephir Team and contributors').PHP_EOL;
echo contains($info, 'Version =>').PHP_EOL;
echo contains($info, 'Build Date =>').PHP_EOL;
@@ -32,7 +32,7 @@ echo contains($info, 'Build Date =>').PHP_EOL;
bool(true)
Zephir Parser
The Zephir Parser delivered as a C extension for the PHP language.
-Zephir Parser => enabled
+zephir_parser => enabled
Author => Zephir Team and contributors
Version =>
Build Date =>
diff --git a/tests/skipif.inc b/tests/skipif.inc
index 408b40d6..1b95f3bf 100644
--- a/tests/skipif.inc
+++ b/tests/skipif.inc
@@ -1 +1 @@
-
+
diff --git a/zephir_parser.h b/zephir_parser.h
index 95c96bb5..3cccd21d 100644
--- a/zephir_parser.h
+++ b/zephir_parser.h
@@ -14,8 +14,8 @@
extern zend_module_entry zephir_parser_module_entry;
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
-#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
-#define PHP_ZEPHIR_PARSER_VERSION "1.4.0"
+#define PHP_ZEPHIR_PARSER_NAME "zephir_parser"
+#define PHP_ZEPHIR_PARSER_VERSION "1.4.1"
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."