Skip to content

Commit 75da368

Browse files
committed
🚀 RELEASE: v
1 parent 6e6cb88 commit 75da368

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 4.5.0
4+
* Added link attribute to REST API products endpoint in `admin/wp-dispensary-rest-api.php`
5+
* Added 'wp_query_id' to WP_Query instances in various files in the plugin
6+
* Added `wpd_product_strain_types` helper function and filter in `includes/functions/wp-dispensary-product-functions.php`
7+
* Added `wpd_menu` shortcode setting to optionally show `strain_types` in `admin/wp-dispensary-shortcodes.php`
8+
* Added warning label settings for products in `admin/wp-dispensary-admin-settings.php`
9+
* Added warning label content to data output in `admin/wp-dispensary-data-output.php`
10+
* Updated various styles throughout the plugin in `public/assets/css/wp-dispensary-public.css`
11+
* Updated fontawesome icon font for backend and frontend in various files in the plugin
12+
* Updated `get_wpd_product_details` function output in `includes/functions/wp-dispensary-product-functions.php`
13+
* Updated star rating output in menu shortcode in `admin/wp-dispensary-product-reviews.php`
14+
* Updated start rating styles in menu shortcode in `public/assets/sass/shortcodes/_shortcodes.scss`
15+
* Updated deprecated jQuery codes in `public/assets/js/wp-dispensary-public.js`
16+
* Updated carousel items to have adaptive height in `public/assets/sass/slick-slider/_slick.scss`
17+
* General code cleanup throughout various files in the plugin
18+
319
## 4.4.0
420
* Added `WPD_Logging` class to help with debugging in `admin/class-wp-dispensary-wpd-logging.php`
521
* Added `wp_dispensary_product_details_array` function and filter in `admin/metaboxes/wpd-metabox-product-details.php`

includes/class-wp-dispensary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class WP_Dispensary {
7373
public function __construct() {
7474

7575
$this->plugin_name = 'wp-dispensary';
76-
$this->version = '4.4.0';
76+
$this->version = '4.5.0';
7777

7878
if ( defined( 'WP_DISPENSARY_VERSION' ) ) {
7979
$this->version = WP_DISPENSARY_VERSION;

readme.txt

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: wpdispensary, deviodigital
33
Tags: cannabis, dispensary, menu, marijuana, weed, wp-dispensary, pot, mmj, mmp, menu-management, medical-marijuana
44
Requires at least: 3.0.1
5-
Tested up to: 6.2.0
6-
Stable tag: 4.4.0
5+
Tested up to: 6.6.2
6+
Stable tag: 4.5.0
77
License: GPLv3 or later
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -79,6 +79,22 @@ Visit our [extensions page](https://www.wpdispensary.com/add-ons) to find out ev
7979

8080
== Changelog ==
8181

82+
= 4.5.0 =
83+
* Added link attribute to REST API products endpoint in `admin/wp-dispensary-rest-api.php`
84+
* Added 'wp_query_id' to WP_Query instances in various files in the plugin
85+
* Added `wpd_product_strain_types` helper function and filter in `includes/functions/wp-dispensary-product-functions.php`
86+
* Added `wpd_menu` shortcode setting to optionally show `strain_types` in `admin/wp-dispensary-shortcodes.php`
87+
* Added warning label settings for products in `admin/wp-dispensary-admin-settings.php`
88+
* Added warning label content to data output in `admin/wp-dispensary-data-output.php`
89+
* Updated various styles throughout the plugin in `public/assets/css/wp-dispensary-public.css`
90+
* Updated fontawesome icon font for backend and frontend in various files in the plugin
91+
* Updated `get_wpd_product_details` function output in `includes/functions/wp-dispensary-product-functions.php`
92+
* Updated star rating output in menu shortcode in `admin/wp-dispensary-product-reviews.php`
93+
* Updated start rating styles in menu shortcode in `public/assets/sass/shortcodes/_shortcodes.scss`
94+
* Updated deprecated jQuery codes in `public/assets/js/wp-dispensary-public.js`
95+
* Updated carousel items to have adaptive height in `public/assets/sass/slick-slider/_slick.scss`
96+
* General code cleanup throughout various files in the plugin
97+
8298
= 4.4.0 =
8399
* Added `WPD_Logging` class to help with debugging in `admin/class-wp-dispensary-wpd-logging.php`
84100
* Added `wp_dispensary_product_details_array` function and filter in `admin/metaboxes/wpd-metabox-product-details.php`

wp-dispensary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Plugin Name: WP Dispensary
1414
* Plugin URI: https://www.wpdispensary.com
1515
* Description: The complete marijuana menu solution for dispensaries and delivery services
16-
* Version: 4.4.0
16+
* Version: 4.5.0
1717
* Author: WP Dispensary
1818
* Author URI: https://www.wpdispensary.com
1919
* License: GPL-3.0+
@@ -28,7 +28,7 @@
2828
}
2929

3030
// Define the plugin version.
31-
define( 'WP_DISPENSARY_VERSION', '4.4.0' );
31+
define( 'WP_DISPENSARY_VERSION', '4.5.0' );
3232

3333
// Define the plugin base name.
3434
$plugin_name = plugin_basename( __FILE__ );

0 commit comments

Comments
 (0)