Skip to content

Commit 4937347

Browse files
authored
Merge pull request #5286 from Automattic/release/4.5.1
Release 4.5.1
2 parents 5f704b5 + 4640bf3 commit 4937347

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*** Changelog ***
22

3+
2022-06-20 - version 4.5.1
4+
* Fix: remove upsell from wizard when woothemes-sensei is installed [#5282](https://github.com/Automattic/sensei/pull/5282)
5+
* Fix: Guarantee that the wizard link will stay as white after visiting it [#5281](https://github.com/Automattic/sensei/pull/5281)
6+
37
2022-06-16 - version 4.5.0
48
* New: Course and Lesson Wizard
59
* Add editor wizard modal for courses and lessons [#5149](https://github.com/Automattic/sensei/pull/5149)

lang/sensei-lms.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is distributed under the same license as the Sensei LMS plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Sensei LMS 4.5.0\n"
5+
"Project-Id-Version: Sensei LMS 4.5.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sensei-lms\n"
77
"Last-Translator: \n"
88
"Language-Team: \n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2022-06-16T14:47:08+00:00\n"
12+
"POT-Creation-Date: 2022-06-20T19:20:55+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.4.0\n"
1515
"X-Domain: sensei-lms\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sensei-lms",
3-
"version": "4.5.0",
3+
"version": "4.5.1",
44
"description": "Sensei LMS",
55
"author": "Automattic",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: lms, eLearning, teach, online courses, woocommerce
55
Requires at least: 5.8
66
Tested up to: 6.0
77
Requires PHP: 7.0
8-
Stable tag: 4.5.0
8+
Stable tag: 4.5.1
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -115,6 +115,10 @@ Please visit the [Sensei Blog](https://senseilms.com/blog/) or sign up for our [
115115

116116
== Changelog ==
117117

118+
2022-06-20 - version 4.5.1
119+
* Fix: remove upsell from wizard when woothemes-sensei is installed [#5282](https://github.com/Automattic/sensei/pull/5282)
120+
* Fix: Guarantee that the wizard link will stay as white after visiting it [#5281](https://github.com/Automattic/sensei/pull/5281)
121+
118122
2022-06-16 - version 4.5.0
119123
* New: Course and Lesson Wizard
120124
* Add editor wizard modal for courses and lessons [#5149](https://github.com/Automattic/sensei/pull/5149)
@@ -159,11 +163,4 @@ Please visit the [Sensei Blog](https://senseilms.com/blog/) or sign up for our [
159163
* Tweak: Disable the lesson archive. [#5192](https://github.com/Automattic/sensei/pull/5192)
160164
* Tweak: Update Course Video Progression to support customization via hooks. [#5100](https://github.com/Automattic/sensei/pull/5100), [#5175](https://github.com/Automattic/sensei/pull/5175)
161165

162-
2022.05.23 - version 4.4.2
163-
* Fix: Modules page not found error in learning mode [#5144](https://github.com/Automattic/sensei/pull/5144) 👏 @jeremyfelt
164-
* Fix: Teacher name getting appended and duplicated in module title in course edit [#5114](https://github.com/Automattic/sensei/pull/5114)
165-
* Fix: Lessons not getting assigned to modules if the course is assigned to a teacher [#5151](https://github.com/Automattic/sensei/pull/5151)
166-
* Fix: Add student to course form not visible if Sensei Pro or Content Drip is enabled [#5164](https://github.com/Automattic/sensei/pull/5164)
167-
* Fix: Deprecated warnings on the students report screen [#5153](https://github.com/Automattic/sensei/pull/5153)
168-
169166
[See changelog for all versions](https://github.com/Automattic/sensei/releases).

sensei-lms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Sensei LMS
44
* Plugin URI: https://woocommerce.com/products/sensei/
55
* Description: Share your knowledge, grow your network, and strengthen your brand by launching an online course.
6-
* Version: 4.5.0
6+
* Version: 4.5.1
77
* Author: Automattic
88
* Author URI: https://automattic.com
99
* License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@@ -35,7 +35,7 @@
3535
exit; // Exit if accessed directly.
3636
}
3737

38-
define( 'SENSEI_LMS_VERSION', '4.5.0' );
38+
define( 'SENSEI_LMS_VERSION', '4.5.1' );
3939
define( 'SENSEI_LMS_PLUGIN_FILE', __FILE__ );
4040

4141
if ( class_exists( 'Sensei_Main' ) ) {

0 commit comments

Comments
 (0)