From a70cdeb18d83fff4890c41083072b9fa4aa30a8c Mon Sep 17 00:00:00 2001 From: John Boehr Date: Thu, 12 Nov 2020 19:48:35 -0800 Subject: [PATCH] Release v0.9.2 --- CHANGELOG.md | 12 +++++++++++- README.md | 1 - package.xml | 11 +++++------ php_mustache.h | 4 ++-- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee658fb..47be154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All Notable changes to `php-mustache` will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [0.9.2] - 2020-11-12 + +### Fixed +- Fixes for latest PHP 8.0 + +### Changed +- Drop max PHP version constraint in package.xml + ## [0.9.1] - 2019-12-11 ### Fixed @@ -67,7 +75,9 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Lambda support (@adambaratz) -[Unreleased]: https://github.com/jbboehr/php-mustache/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/jbboehr/php-mustache/compare/v0.9.2...HEAD +[0.9.2]: https://github.com/jbboehr/php-mustache/compare/v0.9.1...v0.9.2 +[0.9.1]: https://github.com/jbboehr/php-mustache/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/jbboehr/php-mustache/compare/v0.8.1...v0.9.0 [0.8.1]: https://github.com/jbboehr/php-mustache/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/jbboehr/php-mustache/compare/v0.7.4...v0.8.0 diff --git a/README.md b/README.md index 3b59136..7d46277 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # php-mustache -[![Travis Build Status](https://travis-ci.com/jbboehr/php-mustache.png?branch=master)](https://travis-ci.com/jbboehr/php-mustache) [![GitHub Linux Build Status](https://github.com/jbboehr/php-mustache/workflows/linux/badge.svg)](https://github.com/jbboehr/php-mustache/actions?query=workflow%3Alinux) [![GitHub OSX Build Status](https://github.com/jbboehr/php-mustache/workflows/osx/badge.svg)](https://github.com/jbboehr/php-mustache/actions?query=workflow%3Aosx) [![GitHub Docker Build Status](https://github.com/jbboehr/php-mustache/workflows/docker/badge.svg)](https://github.com/jbboehr/php-mustache/actions?query=workflow%3Adocker) diff --git a/package.xml b/package.xml index 5a2493a..ce1797b 100644 --- a/package.xml +++ b/package.xml @@ -10,10 +10,10 @@ jbboehr@php.net yes - 2019-12-11 + 2020-11-12 - 0.9.1 - 0.9.1 + 0.9.2 + 0.9.2 stable @@ -21,8 +21,8 @@ MIT -- PHP 7.4 build fixes (@sunpoet) -- Fixed memory leak + - Fixes for latest PHP 8.0 + - Drop max PHP version constraint in package.xml @@ -235,7 +235,6 @@ 7.0.0 - 7.4.99 1.4.1 diff --git a/php_mustache.h b/php_mustache.h index 0fc161b..c62ef51 100644 --- a/php_mustache.h +++ b/php_mustache.h @@ -5,8 +5,8 @@ #include #define PHP_MUSTACHE_NAME "mustache" -#define PHP_MUSTACHE_VERSION "0.9.1" -#define PHP_MUSTACHE_RELEASE "2019-12-11" +#define PHP_MUSTACHE_VERSION "0.9.2" +#define PHP_MUSTACHE_RELEASE "2020-11-12" #define PHP_MUSTACHE_BUILD "master" #define PHP_MUSTACHE_AUTHORS "John Boehr (lead)" #define PHP_MUSTACHE_SPEC "1.1.2"