Skip to content

Commit

Permalink
🚀 RELEASE: v
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Sep 9, 2024
1 parent 6e6cb88 commit 75da368
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 4.5.0
* Added link attribute to REST API products endpoint in `admin/wp-dispensary-rest-api.php`
* Added 'wp_query_id' to WP_Query instances in various files in the plugin
* Added `wpd_product_strain_types` helper function and filter in `includes/functions/wp-dispensary-product-functions.php`
* Added `wpd_menu` shortcode setting to optionally show `strain_types` in `admin/wp-dispensary-shortcodes.php`
* Added warning label settings for products in `admin/wp-dispensary-admin-settings.php`
* Added warning label content to data output in `admin/wp-dispensary-data-output.php`
* Updated various styles throughout the plugin in `public/assets/css/wp-dispensary-public.css`
* Updated fontawesome icon font for backend and frontend in various files in the plugin
* Updated `get_wpd_product_details` function output in `includes/functions/wp-dispensary-product-functions.php`
* Updated star rating output in menu shortcode in `admin/wp-dispensary-product-reviews.php`
* Updated start rating styles in menu shortcode in `public/assets/sass/shortcodes/_shortcodes.scss`
* Updated deprecated jQuery codes in `public/assets/js/wp-dispensary-public.js`
* Updated carousel items to have adaptive height in `public/assets/sass/slick-slider/_slick.scss`
* General code cleanup throughout various files in the plugin

## 4.4.0
* Added `WPD_Logging` class to help with debugging in `admin/class-wp-dispensary-wpd-logging.php`
* Added `wp_dispensary_product_details_array` function and filter in `admin/metaboxes/wpd-metabox-product-details.php`
Expand Down
2 changes: 1 addition & 1 deletion includes/class-wp-dispensary.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class WP_Dispensary {
public function __construct() {

$this->plugin_name = 'wp-dispensary';
$this->version = '4.4.0';
$this->version = '4.5.0';

if ( defined( 'WP_DISPENSARY_VERSION' ) ) {
$this->version = WP_DISPENSARY_VERSION;
Expand Down
20 changes: 18 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: wpdispensary, deviodigital
Tags: cannabis, dispensary, menu, marijuana, weed, wp-dispensary, pot, mmj, mmp, menu-management, medical-marijuana
Requires at least: 3.0.1
Tested up to: 6.2.0
Stable tag: 4.4.0
Tested up to: 6.6.2
Stable tag: 4.5.0
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 4.5.0 =
* Added link attribute to REST API products endpoint in `admin/wp-dispensary-rest-api.php`
* Added 'wp_query_id' to WP_Query instances in various files in the plugin
* Added `wpd_product_strain_types` helper function and filter in `includes/functions/wp-dispensary-product-functions.php`
* Added `wpd_menu` shortcode setting to optionally show `strain_types` in `admin/wp-dispensary-shortcodes.php`
* Added warning label settings for products in `admin/wp-dispensary-admin-settings.php`
* Added warning label content to data output in `admin/wp-dispensary-data-output.php`
* Updated various styles throughout the plugin in `public/assets/css/wp-dispensary-public.css`
* Updated fontawesome icon font for backend and frontend in various files in the plugin
* Updated `get_wpd_product_details` function output in `includes/functions/wp-dispensary-product-functions.php`
* Updated star rating output in menu shortcode in `admin/wp-dispensary-product-reviews.php`
* Updated start rating styles in menu shortcode in `public/assets/sass/shortcodes/_shortcodes.scss`
* Updated deprecated jQuery codes in `public/assets/js/wp-dispensary-public.js`
* Updated carousel items to have adaptive height in `public/assets/sass/slick-slider/_slick.scss`
* General code cleanup throughout various files in the plugin

= 4.4.0 =
* Added `WPD_Logging` class to help with debugging in `admin/class-wp-dispensary-wpd-logging.php`
* Added `wp_dispensary_product_details_array` function and filter in `admin/metaboxes/wpd-metabox-product-details.php`
Expand Down
4 changes: 2 additions & 2 deletions wp-dispensary.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin Name: WP Dispensary
* Plugin URI: https://www.wpdispensary.com
* Description: The complete marijuana menu solution for dispensaries and delivery services
* Version: 4.4.0
* Version: 4.5.0
* Author: WP Dispensary
* Author URI: https://www.wpdispensary.com
* License: GPL-3.0+
Expand All @@ -28,7 +28,7 @@
}

// Define the plugin version.
define( 'WP_DISPENSARY_VERSION', '4.4.0' );
define( 'WP_DISPENSARY_VERSION', '4.5.0' );

// Define the plugin base name.
$plugin_name = plugin_basename( __FILE__ );
Expand Down

0 comments on commit 75da368

Please sign in to comment.