diff --git a/.changelogs/fix_signal-labs-2.yml b/.changelogs/fix_signal-labs-2.yml deleted file mode 100644 index 476414dedd..0000000000 --- a/.changelogs/fix_signal-labs-2.yml +++ /dev/null @@ -1,4 +0,0 @@ -significance: patch -type: fixed -entry: Adds additional filtering when using the lifterlms_favorites shortcode. - Thanks, Peter Thaleikis. diff --git a/CHANGELOG.md b/CHANGELOG.md index bea95376e9..566987b468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ LifterLMS Changelog =================== +v7.6.3 - 2024-05-31 +------------------- + +##### Bug Fixes + ++ Adds additional filtering when using the lifterlms_favorites shortcode. Thanks, Peter Thaleikis. + +##### Updated Templates + ++ [templates/admin/reporting/nav-filters.php](https://github.com/gocodebox/lifterlms/blob/7.6.3/templates/admin/reporting/nav-filters.php) + + v7.6.2 - 2024-05-28 ------------------- diff --git a/class-lifterlms.php b/class-lifterlms.php index 5c3f8e889d..4d22ea9fa5 100644 --- a/class-lifterlms.php +++ b/class-lifterlms.php @@ -34,7 +34,7 @@ final class LifterLMS { * * @var string */ - public $version = '7.6.2'; + public $version = '7.6.3'; /** * LLMS_Assets instance diff --git a/lifterlms.php b/lifterlms.php index f1b4ab78a0..1bf14b0a3d 100644 --- a/lifterlms.php +++ b/lifterlms.php @@ -10,7 +10,7 @@ * Plugin Name: LifterLMS * Plugin URI: https://lifterlms.com/ * Description: Complete e-learning platform to sell online courses, protect lessons, offer memberships, and quiz students. - * Version: 7.6.2 + * Version: 7.6.3 * Author: LifterLMS * Author URI: https://lifterlms.com/ * Text Domain: lifterlms diff --git a/package-lock.json b/package-lock.json index fbbe228bff..c9f36578b5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lifterlms", - "version": "7.6.2", + "version": "7.6.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lifterlms", - "version": "7.6.2", + "version": "7.6.3", "license": "GPL-3.0", "dependencies": { "@babel/core": "^7.16.5", @@ -33158,6 +33158,12 @@ "dev": true, "license": "GPL-3.0-or-later", "dependencies": { + "chalk": "^4.1.2", + "columnify": "^1.5.4", + "commander": "^8.2.0", + "inquirer": "^8.2.0", + "replace-in-file": "^6.3.1", + "semver": "^7.3.5", "yaml": "^2.2.2" }, "bin": { diff --git a/package.json b/package.json index 873966ca79..f367e4462d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lifterlms", - "version": "7.6.2", + "version": "7.6.3", "description": "LifterLMS by codeBOX", "repository": { "type": "git",