Skip to content

Commit

Permalink
Bump version to 0.12.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Mar 5, 2021
1 parent 03fa1b1 commit 8a412a1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Change Log
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com)
The format based on [Keep a Changelog](http://keepachangelog.com)
and this project adheres to [Semantic Versioning](http://semver.org).

## [Unreleased]

## [0.12.21] - 2021-03-05
### Fixed
- Fixed path separators in generated `config.m4` file on Windows [#2153](https://github.com/phalcon/zephir/issues/2153)

## [0.12.20] - 2020-12-16
### Added
- Added supports void type return value for stubs
Expand All @@ -15,8 +20,6 @@ and this project adheres to [Semantic Versioning](http://semver.org).
- Fixed missing kernel directory at build time [ice/framework#271](https://github.com/ice/framework/issues/271)
- Fixed stubs generation for case with array declaration with square brackets in params
- Fixed parameters positioning for `implode()` php function [#2120](https://github.com/phalcon/zephir/issues/2120)
- Fixed path separators in generated `config.m4` file on Windows [#2153](https://github.com/phalcon/zephir/issues/2153)


## [0.12.19] - 2020-05-13
### Fixed
Expand Down Expand Up @@ -423,7 +426,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.20...HEAD
[Unreleased]: https://github.com/phalcon/zephir/compare/0.12.21...HEAD
[0.12.21]: https://github.com/phalcon/zephir/compare/0.12.20...0.12.21
[0.12.20]: https://github.com/phalcon/zephir/compare/0.12.19...0.12.20
[0.12.19]: https://github.com/phalcon/zephir/compare/0.12.18...0.12.19
[0.12.18]: https://github.com/phalcon/zephir/compare/0.12.17...0.12.18
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.20-$Id$';
const VERSION = '0.12.21-$Id$';

const LOGO = <<<'ASCII'
_____ __ _
Expand Down
2 changes: 1 addition & 1 deletion ext/php_stub.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define PHP_STUB_VERSION "1.0.0"
#define PHP_STUB_EXTNAME "stub"
#define PHP_STUB_AUTHOR "Phalcon Team and contributors"
#define PHP_STUB_ZEPVERSION "0.12.20-$Id$"
#define PHP_STUB_ZEPVERSION "0.12.21-$Id$"
#define PHP_STUB_DESCRIPTION "Description <b>test</b> for<br/>Test Extension."

typedef struct _zephir_struct_db {
Expand Down

0 comments on commit 8a412a1

Please sign in to comment.