diff --git a/changelog.md b/changelog.md index 32663c80..dff9e166 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,4 @@ -### [unreleased] +### 4.3.0 - 2024-05-04 #### Added diff --git a/readme.txt b/readme.txt index 7140bfaa..6a65545a 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: michelleblanchette Tags: asana, project, task, management, manager, integration, api, work, business, collaboration, client, customer, support, portal, dashboard, widget, metabox, shortcodes Requires at least: 5.0.0 Tested up to: 6.5.2 -Stable tag: 4.2.1 +Stable tag: 4.3.0 Requires PHP: 7.2 License: GPL-3.0-or-later License URI: https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/components/task/TaskSingleAsync.jsx b/src/components/task/TaskSingleAsync.jsx index 264bd126..4217e756 100644 --- a/src/components/task/TaskSingleAsync.jsx +++ b/src/components/task/TaskSingleAsync.jsx @@ -1,7 +1,7 @@ /** * TaskSingleAsync component * - * @since [unreleased] + * @since 4.3.0 */ import TaskListItem from './TaskListItem.jsx'; diff --git a/src/includes/class-asana-interface.php b/src/includes/class-asana-interface.php old mode 100755 new mode 100644 index 19f3644e..78d51179 --- a/src/includes/class-asana-interface.php +++ b/src/includes/class-asana-interface.php @@ -1287,7 +1287,7 @@ function ( $err ) { * Attempts to retrieve task data. Providing the post id of the provided * pinned task gid will also attempt data self-healing. * - * @since [unreleased] Revived $opt_fields param. + * @since 4.3.0 Revived $opt_fields param. * @since 3.1.0 Marked $opt_fields param as deprecated. * @since 1.0.0 * diff --git a/src/includes/class-html-builder.php b/src/includes/class-html-builder.php index b81ad101..8de2c582 100644 --- a/src/includes/class-html-builder.php +++ b/src/includes/class-html-builder.php @@ -577,7 +577,7 @@ public static function get_local_attachment_view_url( * * @see PTC_Completionist\REST_API\Attachments::handle_get_attachment() * - * @since [unreleased] + * @since 4.3.0 * * @param string $attachment_gid The Asana attachment's GID. * @param array $args Optional. Additional arguments for the diff --git a/src/index_ShortcodeAsanaTask.jsx b/src/index_ShortcodeAsanaTask.jsx index 5e337442..4d578b04 100644 --- a/src/index_ShortcodeAsanaTask.jsx +++ b/src/index_ShortcodeAsanaTask.jsx @@ -1,7 +1,7 @@ /** * Renders the [ptc_asana_task] shortcode. * - * @since [unreleased] + * @since 4.3.0 */ import TaskSingleAsync from './components/task/TaskSingleAsync.jsx'; @@ -21,7 +21,7 @@ document.addEventListener('DOMContentLoaded', () => { * Filters the element to be rendered for displaying the * [ptc_asana_task] shortcode. * - * @since [unreleased] + * @since 4.3.0 * * @param {Object} element - The element to render. * Default . diff --git a/src/public/class-shortcodes.php b/src/public/class-shortcodes.php index 78ac6a91..693eaaf5 100644 --- a/src/public/class-shortcodes.php +++ b/src/public/class-shortcodes.php @@ -377,7 +377,7 @@ public static function get_ptc_asana_project( /** * Gets the [ptc_asana_task] shortcode content. * - * @since [unreleased] + * @since 4.3.0 * * @see \add_shortcode() * diff --git a/src/public/rest-api/class-tasks.php b/src/public/rest-api/class-tasks.php index f751f2a3..e173d45b 100644 --- a/src/public/rest-api/class-tasks.php +++ b/src/public/rest-api/class-tasks.php @@ -203,7 +203,7 @@ public static function handle_create_task( /** * Handles a GET request to retrieve Asana task data. * - * @since [unreleased] + * @since 4.3.0 * * @param \WP_REST_Request $request The API request. *