Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
Update changelog and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsisk committed Feb 2, 2018
1 parent 9733c47 commit 00278a2
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 20 deletions.
17 changes: 15 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
- Investigate setting a primary site collection, is_* rules for non-primary
collection (per-landing page? Front page theme resolution?)

## [5.0.2] (2018-02-01)

### Changed
- PHP and WordPress dependencies now fail gracefully

### Fixed
- Overly-restrictive argument type on
`Mgsisk\Webcomic\Restrict\hook_comic_comments()`
- v3 upgrades not using collection term details
- v1, v2, and v3 upgrades not converting storylines and characters

## [5.0.1] (2018-01-27)

### Changed
Expand All @@ -22,7 +33,7 @@

### Fixed
- Double counting of saved Webcomic Matcher matches
- Recursive call to Mgsisk\Webcomic\Compat\hook_get_post_prints_v4
- Recursive call to `Mgsisk\Webcomic\Compat\hook_get_post_prints_v4()`

## [5.0.0] – Phoenix Down (2018-01-21)

Expand Down Expand Up @@ -454,7 +465,8 @@
- get_the_collection() now accepts an array argument which takes any
key/value pairs that the WordPress function get_terms() will accept (see
wp-includes/taxonomy.php).
- Includes new template tags get_comic_image(), the_current_chapter(), and the_current_volume().
- Includes new template tags get_comic_image(), the_current_chapter(), and
the_current_volume().
- All plugin files now include inline documentation.
- Other bug fixes and feature enhancements.

Expand Down Expand Up @@ -551,6 +563,7 @@

> Initial public commit.
[5.0.2]: https://github.com/mgsisk/webcomic/compare/v5.0.1...v5.0.2
[5.0.1]: https://github.com/mgsisk/webcomic/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/mgsisk/webcomic/compare/4.4.1...v5.0.0
[4.4.1]: https://github.com/mgsisk/webcomic/compare/4.4...4.4.1
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webcomic",
"version": "5.0.1",
"version": "5.0.2",
"description": "Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.",
"repository": "mgsisk/webcomic",
"author": "mgsisk <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="assets/icon-256x256.png" align="right" width="96">

[![Stable tag 5.0.1][img-stable]][url-stable]
[![Stable tag 5.0.2][img-stable]][url-stable]
[![Requires WordPress 4.7][img-requires]][url-requires]
[![Tested up to WordPress 4.9.1][img-tested]][url-tested]
[![Requires PHP 7.0][img-php]][url-php]
Expand Down
17 changes: 7 additions & 10 deletions src/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== Webcomic ===
Stable tag: 5.0.1
Stable tag: 5.0.2
Requires at least: 4.7
Tested up to: 4.9.1
Tested up to: 4.9.2
Requires PHP: 7.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -78,18 +78,15 @@ If you're a friendly and knowledgable Webcomic user, please chime in and help ot

[Complete changelog](https://github.com/mgsisk/webcomic/blob/master/changelog.md)


= 5.0.1 (2018-01-27) =
= 5.0.2 (2018-02-01) =

**Changed**
- Nginx fastcgi_read_timeout increased to 999 in test vagrant box
- PHP post_max_size increased to 999M in test vagrant box
- PHP memory_limit increased to 512M in test vagrant box
- Adminer updated to 4.4.0 in test vagrant box
- PHP and WordPress dependencies now fail gracefully

**Fixed**
- Double counting of saved Webcomic Matcher matches
- Recursive call to Mgsisk\Webcomic\Compat\hook_get_post_prints_v4
- Overly-restrictive argument type on `Mgsisk\Webcomic\Restrict\hook_comic_comments()`
- v3 upgrades not using collection term details
- v1, v2, and v3 upgrades not converting storylines and characters

= 5.0.0 - Phoenix Down (2018-01-21) =
> Refactored everything into a functional component-based architecture.
Expand Down
4 changes: 2 additions & 2 deletions src/webcomic.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Webcomic
* Plugin URI: https://github.com/mgsisk/webcomic
* Description: Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.
* Version: 5.0.1
* Version: 5.0.2
* Author: Michael Sisk
* Author URI: https://mgsisk.com/
* License: GPL-2.0+
Expand Down Expand Up @@ -33,5 +33,5 @@

require __DIR__ . '/lib/plugin/globals.php';

webcomic_init( '5.0.1' );
webcomic_init( '5.0.2' );
webcomic_load( webcomic( 'option.components' ) );
4 changes: 2 additions & 2 deletions tests/phpunit/src/lib/plugin/globals/webcomic-help-test.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function setup() {

add_option(
'webcomic', [
'version' => '5.0.1',
'version' => '5.0.2',
]
);
}
Expand Down Expand Up @@ -58,7 +58,7 @@ public function it_returns_help_text_inside_the_admin_dashboard() {
$expected .= '<li><a href="mailto:[email protected]?subject=Webcomic%20Help">Contact Mike</a></li>';
$expected .= '</ul>';
$expected .= '<p><a href="https://mgsisk.com/#support" target="_blank" class="button button-primary button-small">Support Webcomic</a></p>';
$expected .= '<p><small>Thank you for creating with Webcomic 5.0.1</small></p>';
$expected .= '<p><small>Thank you for creating with Webcomic 5.0.2</small></p>';

self::assertSame( $expected, webcomic_help() );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function setup() {

add_option(
'webcomic', [
'version' => '5.0.1',
'version' => '5.0.2',
]
);
}
Expand Down

0 comments on commit 00278a2

Please sign in to comment.