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 5, 2018
1 parent 057e889 commit 150a483
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
- Investigate setting a primary site collection, is_* rules for non-primary
collection (per-landing page? Front page theme resolution?)

## [5.0.3] (2018-02-04)

### Fixed
- Missing default value for `webcomic_integrate_archive_preview`
- Default `orderby` value on term list shortcodes

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

### Changed
Expand Down Expand Up @@ -563,6 +569,7 @@

> Initial public commit.
[5.0.3]: https://github.com/mgsisk/webcomic/compare/v5.0.2...v5.0.3
[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
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.2",
"version": "5.0.3",
"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.2][img-stable]][url-stable]
[![Stable tag 5.0.3][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
13 changes: 5 additions & 8 deletions src/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=== Webcomic ===
Stable tag: 5.0.2
Stable tag: 5.0.3
Requires at least: 4.7
Tested up to: 4.9.2
Requires PHP: 7.0
Expand Down Expand Up @@ -78,15 +78,11 @@ 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.2 (2018-02-01) =

**Changed**
- PHP and WordPress dependencies now fail gracefully
= 5.0.3 (2018-02-04) =

**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
- Missing default value for `webcomic_integrate_archive_preview`
- Default `orderby` value on term list shortcodes

= 5.0.0 - Phoenix Down (2018-01-21) =
> Refactored everything into a functional component-based architecture.
Expand Down Expand Up @@ -238,6 +234,7 @@ If you're a friendly and knowledgable Webcomic user, please chime in and help ot

== Upgrade Notice ==

= 5.0.3 =
Visit https://mgsisk.com/webcomic5 for important information about this version.

== Special Thanks ==
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.2
* Version: 5.0.3
* 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.2' );
webcomic_init( '5.0.3' );
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.2',
'version' => '5.0.3',
]
);
}
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.2</small></p>';
$expected .= '<p><small>Thank you for creating with Webcomic 5.0.3</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.2',
'version' => '5.0.3',
]
);
}
Expand Down

0 comments on commit 150a483

Please sign in to comment.