Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbboehr committed Sep 10, 2018
1 parent fc9767e commit 90752b9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip

## [Unreleased]

## [0.5.0] - 2018-09-10

### Added
- PSR-17 HTTP Factories support
- Whitelist PHP 7.3

## [0.4.0] - 2018-03-05

Expand Down Expand Up @@ -67,7 +70,8 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- PSR-7 [psr/http-message](https://github.com/php-fig/http-message) v1.0.0 interfaces


[Unreleased]: https://github.com/jbboehr/php-psr/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/jbboehr/php-psr/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/jbboehr/php-psr/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/jbboehr/php-psr/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/jbboehr/php-psr/compare/v0.2.3...v0.3.0
[0.2.3]: https://github.com/jbboehr/php-psr/compare/v0.2.2...v0.2.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ This will use this PHP extension instead of downloading from packagist.
## Credits

* [@sergeyklay][:github-sergeyklay:] - Appveyor and documentation improvements
* [@flyinghail][:github-flyinghail:] - PSR-15 support
* [@flyinghail][:github-flyinghail:] - PSR-15 and PSR-17 support
* [@Jan-E][:github-jan-e:] - Original appveyor template

## License
Expand Down
11 changes: 6 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2018-03-05</date>
<date>2018-09-10</date>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
<release>0.5.0</release>
<api>0.5.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/BSD-2-Clause">BSD-2-Clause</license>
<notes>
- PSR-15 HTTP Handlers support
- PSR-17 HTTP Factories support
- Whitelist PHP 7.3
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -121,7 +122,7 @@
<required>
<php>
<min>5.4.0</min>
<max>7.2.99</max>
<max>7.3.99</max>
</php>
<pearinstaller>
<min>1.4.1</min>
Expand Down
4 changes: 2 additions & 2 deletions php_psr.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#endif

#define PHP_PSR_NAME "psr"
#define PHP_PSR_VERSION "0.4.0"
#define PHP_PSR_RELEASE "2018-03-05"
#define PHP_PSR_VERSION "0.5.0"
#define PHP_PSR_RELEASE "2018-09-10"
#define PHP_PSR_AUTHORS "John Boehr <[email protected]> (lead)"

#define PHP_PSR_ABSTRACT_ME(c, f) PHP_ABSTRACT_ME(c, f, arginfo_ ## c ## _ ## f)
Expand Down

0 comments on commit 90752b9

Please sign in to comment.