Skip to content

Commit cfef8d9

Browse files
committed
Merge branch 'release/5.0.1'
2 parents ecfe350 + bb3623f commit cfef8d9

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) as of version 5.0.0.
66

7+
## [5.0.1]
8+
* Ensure that legacy API keys are exchanged before making any other API requests ([#45]).
9+
710
## [5.0.0]
811
* Complete rewrite of the plugin and backing APIs to bring even more content to the WP101 plugin.
912
* Custom videos, course visibility, and permissions are now controlled via [the WP101 Plugin app](https://app.wp101plugin.com).
@@ -115,3 +118,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
115118
* First version!
116119

117120
[5.0.0]: https://github.com/leftlane/wp101plugin/releases/tag/v5.0.0
121+
[5.0.1]: https://github.com/leftlane/wp101plugin/releases/tag/v5.0.1
122+
[#45]: https://github.com/leftlane/wp101plugin/issues/45

readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: wp101, tutorials, video, help, learn, screencast
44
Requires at least: 3.2
55
Requires PHP: 5.4
66
Tested up to: 5.1
7-
Stable tag: 5.0.0
7+
Stable tag: 5.0.1
88

99
The WordPress 101 video tutorials are all-new for Gutenberg and Wordpress 5.0! Watch videos directly within the dashboard. Choose which videos to show, or add your own.
1010

@@ -82,12 +82,18 @@ We've made every effort to ensure a smooth transition to version 5.x of the WP10
8282

8383
For a complete list of changes, please see [the plugin's GitHub repository](https://github.com/leftlane/wp101plugin/blob/master/CHANGELOG.md).
8484

85+
= 5.0.1 =
86+
* Ensure that legacy API keys are exchanged before making any other API requests.
87+
8588
= 5.0.0 =
8689
* Complete rewrite of the plugin and backing APIs to bring even more content to the WP101 plugin.
8790
* Custom videos, course visibility, and permissions are now controlled via [the WP101 Plugin app](https://app.wp101plugin.com).
8891

8992
== Upgrade Notice ==
9093

94+
= 5.0.1 =
95+
* Resolves an issue some subscribers were seeing during API key migration.
96+
9197
= 5.0.0 =
9298
* We’ve completely redesigned the WP101 Plugin from the ground-up, adding brand new features and improving the entire experience.
9399

wp101.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP101
44
* Plugin URI: https://wp101plugin.com
55
* Description: A complete set of video tutorials for WordPress, Jetpack, WooCommerce, and Yoast SEO, delivered directly in the dashboard.
6-
* Version: 5.0.0
6+
* Version: 5.0.1
77
* Author: WP101
88
* Author URI: https://wp101.com
99
* Text Domain: wp101
@@ -15,7 +15,7 @@
1515
define( 'WP101_VIEWS', __DIR__ . '/views' );
1616
define( 'WP101_URL', plugins_url( null, __FILE__ ) );
1717
define( 'WP101_BASENAME', plugin_basename( __FILE__ ) );
18-
define( 'WP101_VERSION', '5.0.0' );
18+
define( 'WP101_VERSION', '5.0.1' );
1919

2020
require_once WP101_INC . '/admin.php';
2121
require_once WP101_INC . '/class-api.php';

0 commit comments

Comments
 (0)