Skip to content

Commit

Permalink
Merge pull request #1920 from phalcon/development
Browse files Browse the repository at this point in the history
0.12.4
  • Loading branch information
sergeyklay authored Sep 22, 2019
2 parents bedd68b + 40c45a5 commit b386980
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
## [0.12.4] - 2019-09-22
- Fixed install template

## [0.12.3] - 2019-09-22
### Fixed
- Fixed concatenation support of strings with double numbers
Expand Down Expand Up @@ -218,7 +222,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed casting resource to int (only ZendEngine 3)
[#1524](https://github.com/phalcon/zephir/issues/1524)

[Unreleased]: https://github.com/phalcon/zephir/compare/0.12.3...HEAD
[Unreleased]: https://github.com/phalcon/zephir/compare/0.12.4...HEAD
[0.12.4]: https://github.com/phalcon/zephir/compare/0.12.3...0.12.4
[0.12.3]: https://github.com/phalcon/zephir/compare/0.12.2...0.12.3
[0.12.2]: https://github.com/phalcon/zephir/compare/0.12.1...0.12.2
[0.12.1]: https://github.com/phalcon/zephir/compare/0.12.0...0.12.1
Expand Down
2 changes: 1 addition & 1 deletion Library/Zephir.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
final class Zephir
{
const VERSION = '0.12.3-$Id$';
const VERSION = '0.12.4-$Id$';

const LOGO = <<<'ASCII'
_____ __ _
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.12.3-{build}
version: 0.12.4-{build}

environment:
matrix:
Expand Down
8 changes: 1 addition & 7 deletions templates/ZendEngine3/install
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,7 @@ fi

${phpize} --silent

ZEPHIR_CFLAGS=""
ZEPHIR_LDFLAGS=""

test -n "$CFLAGS" && ZEPHIR_CFLAGS="CFLAGS=\"$CFLAGS\""
test -n "$LDFLAGS" && ZEPHIR_LDFLAGS="LDFLAGS=\"$LDFLAGS\""

/configure --silent --enable-%PROJECT_LOWER% "$ZEPHIR_CFLAGS" "$ZEPHIR_LDFLAGS"
./configure --silent --enable-%PROJECT_LOWER% CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"

make -s
$sudo make -s install

0 comments on commit b386980

Please sign in to comment.