Skip to content

Commit

Permalink
Release v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jbboehr committed Nov 13, 2020
1 parent 33a71b6 commit a70cdeb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion 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)
Expand Down
11 changes: 5 additions & 6 deletions package.xml
Expand Up @@ -10,19 +10,19 @@
<email>jbboehr@php.net</email>
<active>yes</active>
</lead>
<date>2019-12-11</date>
<date>2020-11-12</date>
<version>
<release>0.9.1</release>
<api>0.9.1</api>
<release>0.9.2</release>
<api>0.9.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT</license>
<notes>
- PHP 7.4 build fixes (@sunpoet)
- Fixed memory leak
- Fixes for latest PHP 8.0
- Drop max PHP version constraint in package.xml
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -235,7 +235,6 @@
<required>
<php>
<min>7.0.0</min>
<max>7.4.99</max>
</php>
<pearinstaller>
<min>1.4.1</min>
Expand Down
4 changes: 2 additions & 2 deletions php_mustache.h
Expand Up @@ -5,8 +5,8 @@
#include <string>

#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 <jbboehr@gmail.com> (lead)"
#define PHP_MUSTACHE_SPEC "1.1.2"
Expand Down

0 comments on commit a70cdeb

Please sign in to comment.