Skip to content

Commit 44939d7

Browse files
committed
build: 1.7.0
1 parent d4ae0c2 commit 44939d7

File tree

21 files changed

+46
-46
lines changed

21 files changed

+46
-46
lines changed

includes/blocks/class-llms-blocks-lesson-progression-block.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @package LifterLMS_Blocks/Blocks
66
*
77
* @since 1.0.0
8-
* @version [version]
8+
* @version 1.7.0
99
*
1010
* @render_hook llms_lesson-progression-block_render
1111
*/
@@ -17,7 +17,7 @@
1717
*
1818
* @since 1.0.0
1919
* @since 1.1.0 Unknown
20-
* @since [version] Don't output an empty render message for free lessons.
20+
* @since 1.7.0 Don't output an empty render message for free lessons.
2121
*/
2222
class LLMS_Blocks_Lesson_Progression_Block extends LLMS_Blocks_Abstract_Block {
2323

@@ -53,7 +53,7 @@ public function add_hooks( $attributes = array(), $content = '' ) {
5353
/**
5454
* Output a message when no HTML was rendered
5555
*
56-
* @since [version]
56+
* @since 1.7.0
5757
*
5858
* @return string
5959
*/

includes/class-llms-blocks-migrate.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Handle post migration to the block editor.
1515
*
1616
* @since 1.0.0
17-
* @since [version] Perform migrations on `current_screen` instead of `admin_enqueue_scripts`.
17+
* @since 1.7.0 Perform migrations on `current_screen` instead of `admin_enqueue_scripts`.
1818
* Migrate membership post types to use pricing table blocks.
1919
*/
2020
class LLMS_Blocks_Migrate {
@@ -24,7 +24,7 @@ class LLMS_Blocks_Migrate {
2424
*
2525
* @since 1.0.0
2626
* @since 1.4.0 Add action for unmigrating posts from the Tools & Utilities status screen.
27-
* @since [version] Perform migrations on `current_screen` instead of `admin_enqueue_scripts`.
27+
* @since 1.7.0 Perform migrations on `current_screen` instead of `admin_enqueue_scripts`.
2828
*/
2929
public function __construct() {
3030

@@ -84,7 +84,7 @@ public static function check_sales_page( $ret, $post_id ) {
8484
* Get an array of post types which can be migrated.
8585
*
8686
* @since 1.3.3
87-
* @since [version] Memberships are migrateable.
87+
* @since 1.7.0 Memberships are migrateable.
8888
*
8989
* @return array
9090
*/
@@ -123,7 +123,7 @@ public function get_migrated_posts( $args = array() ) {
123123
* Retrieve the block template by post type.
124124
*
125125
* @since 1.0.0
126-
* @since [version] Add membership template.
126+
* @since 1.7.0 Add membership template.
127127
*
128128
* @param string $post_type wp post type.
129129
* @return string
@@ -184,7 +184,7 @@ private function get_template( $post_type ) {
184184
*
185185
* @since 1.0.0
186186
* @since 1.4.0 Moves content updating methods to it's own function.
187-
* @since [version] Add Membership post type support.
187+
* @since 1.7.0 Add Membership post type support.
188188
* Update to handle being triggered by hook `current_screen` instead of `admin_enqueue_scripts`.
189189
*
190190
* @return void

includes/class-llms-blocks-post-types.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @package LifterLMS_Blocks/Main
66
*
77
* @since 1.0.0
8-
* @version [version]
8+
* @version 1.7.0
99
*/
1010

1111
defined( 'ABSPATH' ) || exit;
@@ -15,7 +15,7 @@
1515
*
1616
* @since 1.0.0
1717
* @since 1.5.2 Only `show_in_rest` for authenticated users with the `lifterls_instructor` capability.
18-
* @since [version] Add membership categories and tags to WordPress REST API.
18+
* @since 1.7.0 Add membership categories and tags to WordPress REST API.
1919
* Add membership post type editor template.
2020
*/
2121
class LLMS_Blocks_Post_Types {
@@ -24,7 +24,7 @@ class LLMS_Blocks_Post_Types {
2424
* Constructor
2525
*
2626
* @since 1.0.0
27-
* @since [version] Add membership categories and tags to WordPress REST API.
27+
* @since 1.7.0 Add membership categories and tags to WordPress REST API.
2828
* Add membership post type editor template.
2929
*
3030
* @return void
@@ -102,7 +102,7 @@ public function add_course_template( $post_type ) {
102102
/**
103103
* Add an editor template for memberships.
104104
*
105-
* @since [version]
105+
* @since 1.7.0
106106
*
107107
* @param array $post_type Post type registration data.
108108
* @return array

lifterlms-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
// Define Constants.
2727
if ( ! defined( 'LLMS_BLOCKS_VERSION' ) ) {
28-
define( 'LLMS_BLOCKS_VERSION', '1.6.0' );
28+
define( 'LLMS_BLOCKS_VERSION', '1.7.0' );
2929
}
3030

3131
/**

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "lifterlms-blocks",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"description": "blocks",
55
"author": "LifterLMS",
66
"homepage": "https://lifterlms.com/",

src/block-visibility/inspect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @since 1.0.0
55
* @since 1.6.0 Import `InspectorControls` from `wp.blockEditor` in favor of deprecated `wp.editor`
6-
* @since [version] Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
6+
* @since 1.7.0 Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
77
* @version 1.6.0
88
*/
99

src/blocks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @since 1.0.0
55
* @since 1.5.0 Register blocks conditionally based on post type.
66
* @since 1.6.0 Register form field blocks.
7-
* @since [version] Refactor into multiple files for clarity and organization.
7+
* @since 1.7.0 Refactor into multiple files for clarity and organization.
88
*/
99

1010
// Internal Deps.

src/blocks/course-information/inspect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @since 1.0.0
55
* @since 1.6.0 Import `InspectorControls` from `wp.blockEditor` in favor of deprecated `wp.editor`
6-
* @since [version] Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
6+
* @since 1.7.0 Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
77
* @version 1.6.0
88
*/
99

src/blocks/course-syllabus/inspect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @since 1.0.0
55
* @since 1.6.0 Import `InspectorControls` from `wp.blockEditor` in favor of deprecated `wp.editor`
6-
* @since [version] Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
6+
* @since 1.7.0 Import `InspectorControls` from `wp.blockEditor` and fallback to `wp.editor` to maintain backwards compatibility.
77
* @version 1.6.0
88
*/
99

0 commit comments

Comments
 (0)