Skip to content

Commit

Permalink
Release 1.7.0 (#733)
Browse files Browse the repository at this point in the history
* bump version to 1.7.0, update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md for latest PRs

* Update release date for SimplePie 1.7.0
  • Loading branch information
Art4 committed Sep 30, 2022
1 parent 33f86e6 commit 9e9add3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/simplepie/simplepie/compare/1.6.0...master)
## [Unreleased](https://github.com/simplepie/simplepie/compare/1.7.0...master)

## [1.7.0](https://github.com/simplepie/simplepie/compare/1.6.0...1.7.0) - 2022-09-30

### Added

- New class `SimplePie\SimplePie` as a replacement for class `SimplePie`
- New method `SimplePie\Misc::get_default_useragent` as a replacement for constant `SIMPLEPIE_USERAGENT`
- New method `SimplePie\Misc::get_default_useragent()` as a replacement for constant `SIMPLEPIE_USERAGENT`

### Changed

- Do not use magic values for state machine state by @jtojnar in [#735](https://github.com/simplepie/simplepie/pull/735)
- Use PSR-4 classes in Registry by @Art4 in [#736](https://github.com/simplepie/simplepie/pull/736)
- GH Actions: run tests against PHP 8.2 by @jrfnl in [#739](https://github.com/simplepie/simplepie/pull/739)
- Change code style to PSR-12 by @Art4 in [#738](https://github.com/simplepie/simplepie/pull/738)

### Fixed

- Fix status_code type by @Alkarex in [#728](https://github.com/simplepie/simplepie/pull/728)
- Fix parsing of HTTP Links by @Alkarex in [#729](https://github.com/simplepie/simplepie/pull/729)
- Fix using the best base link for an item content by @Alkarex in [#744](https://github.com/simplepie/simplepie/pull/744)
- Fix .editorconfig regression by @Alkarex in [#745](https://github.com/simplepie/simplepie/pull/745)

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion library/SimplePie.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*
* @package SimplePie
* @version 1.6.0
* @version 1.7.0
* @copyright 2004-2017 Ryan Parman, Sam Sneddon, Ryan McCue
* @author Ryan Parman
* @author Sam Sneddon
Expand Down
2 changes: 1 addition & 1 deletion src/SimplePie.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class SimplePie
/**
* SimplePie Version
*/
const VERSION = '1.6.0';
const VERSION = '1.7.0';

/**
* SimplePie Website URL
Expand Down

0 comments on commit 9e9add3

Please sign in to comment.