Skip to content

Commit f58b66c

Browse files
authored
Merge pull request #72 from phalcon/development
1.3.1
2 parents 4d72367 + 20f1aaf commit f58b66c

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.3.0-{build}
1+
version: 1.3.1-{build}
22

33
environment:
44
matrix:

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
## [1.3.1] - 2019-05-01
9+
### Fixed
10+
- Fixed `config.m4` to correct install headers
11+
812
## [1.3.0] - 2019-04-27
913
### Added
1014
- Added support for "use" keyword in closures
@@ -124,7 +128,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
124128
### Added
125129
- Initial stable release
126130

127-
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.0...HEAD
131+
[Unreleased]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.1...HEAD
132+
[1.3.1]: https://github.com/phalcon/php-zephir-parser/compare/v1.3.0...v1.3.1
128133
[1.3.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.2.0...v1.3.0
129134
[1.2.0]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.4...v1.2.0
130135
[1.1.4]: https://github.com/phalcon/php-zephir-parser/compare/v1.1.3...v1.1.4

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ if test "$PHP_ZEPHIR_PARSER" = "yes"; then
6565
PHP_NEW_EXTENSION(zephir_parser, $PHP_ZEPHIR_PARSER_SOURCES, $ext_shared,, $PHP_ZEPHIR_PARSER_FLAGS)
6666

6767
ifdef([PHP_INSTALL_HEADERS],
68-
[PHP_INSTALL_HEADERS([ext/zephir_parser], $PHP_ZEPHIR_PARSER_FLAGS)])
68+
[PHP_INSTALL_HEADERS([ext/zephir_parser], $PHP_ZEPHIR_PARSER_HEADERS)])
6969

7070
PHP_ADD_MAKEFILE_FRAGMENT([parser.mk])
7171
fi

zephir_parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extern zend_module_entry zephir_parser_module_entry;
1515
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
1616

1717
#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
18-
#define PHP_ZEPHIR_PARSER_VERSION "1.3.0"
18+
#define PHP_ZEPHIR_PARSER_VERSION "1.3.1"
1919
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
2020
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
2121

0 commit comments

Comments
 (0)