Skip to content

Commit

Permalink
🚀 RELEASE: v4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Jun 8, 2022
1 parent 986af71 commit ab58b69
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@

<h1 id="changelog">Changelog</h1>

<h2 id="4.1.1">4.1.1</h2>

<ul>
<li>Added <code>wp_dispensary_details_metabox_save_detail_keys</code> filter in <code>admin/metaboxes/wpd-metabox-product-details.php</code></li>
<li>Added <code>wp_dispensary_prices_metabox_save_price_keys</code> in <code>admin/metaboxes/wpd-metabox-product-prices.php</code></li>
<li>Bugfix for metadata not saving correctly in <code>admin/metaboxes/wpd-metabox-product-details.php</code></li>
<li>Bugfix for metadata not saving correctly in <code>admin/metaboxes/wpd-metabox-product-prices.php</code></li>
<li>Bugfix for filter names that were used twice in <code>includes/functions/wp-dispensary-pricing-functions.php</code></li>
<li>Updated prices metabox save meta with array in <code>admin/metaboxes/wpd-metabox-product-prices.php</code></li>
<li>Updated inline docs throughout various files in the plugin</li>
</ul>

<h2 id="4.1.0">4.1.0</h2>

<ul>
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 4.1.1
* Added `wp_dispensary_details_metabox_save_detail_keys` filter in `admin/metaboxes/wpd-metabox-product-details.php`
* Added `wp_dispensary_prices_metabox_save_price_keys` in `admin/metaboxes/wpd-metabox-product-prices.php`
* Bugfix for metadata not saving correctly in `admin/metaboxes/wpd-metabox-product-details.php`
* Bugfix for metadata not saving correctly in `admin/metaboxes/wpd-metabox-product-prices.php`
* Bugfix for filter names that were used twice in `includes/functions/wp-dispensary-pricing-functions.php`
* Updated prices metabox save meta with array in `admin/metaboxes/wpd-metabox-product-prices.php`
* Updated inline docs throughout various files in the plugin

## 4.1.0
* Added 'Curbside pickup' option to payment options in `admin/wp-dispensary-admin-settings.php`
* Added `convert_user_roles` helper function in `includes/functions/wp-dispensary-helper-functions.php`
Expand Down
2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1 id="wpdispensarymenumanagementsoftware">WP Dispensary Menu Management Softwa

<p><a href="https://www.codacy.com/gh/wpdispensary/wp-dispensary/dashboard?utm_source=github.com&amp;amp;utm_medium=referral&amp;amp;utm_content=wpdispensary/wp-dispensary&amp;amp;utm_campaign=Badge_Grade"><img src="https://app.codacy.com/project/badge/Grade/5c354fa66bed47cebb795ea90d7c52df" alt="Codacy Badge" /></a></p>

<p>:raised_hand: <strong>WAIT!</strong> This repo is under active development. Download the latest stable release: <a href="https://github.com/wpdispensary/wp-dispensary/releases/tag/v4.1.0">v4.1.0</a>.
<p>:raised_hand: <strong>WAIT!</strong> This repo is under active development. Download the latest stable release: <a href="https://github.com/wpdispensary/wp-dispensary/releases/tag/v4.1.1">v4.1.0</a>.
:point_right: <strong><a href="https://demo.wpdispensary.com/">View Demo</a></strong>
</p>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/5c354fa66bed47cebb795ea90d7c52df)](https://www.codacy.com/gh/wpdispensary/wp-dispensary/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=wpdispensary/wp-dispensary&amp;utm_campaign=Badge_Grade)

:raised_hand: **WAIT!** This repo is under active development. Download the latest stable release: [v4.1.0](https://github.com/wpdispensary/wp-dispensary/releases/tag/v4.1.0).
:raised_hand: **WAIT!** This repo is under active development. Download the latest stable release: [v4.1.0](https://github.com/wpdispensary/wp-dispensary/releases/tag/v4.1.1).

:point_right: **[View Demo](https://demo.wpdispensary.com/)**

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.1.0';
$this->version = '4.1.1';

if ( defined( 'WP_DISPENSARY_VERSION' ) ) {
$this->version = WP_DISPENSARY_VERSION;
Expand Down
13 changes: 11 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: 5.9
Stable tag: 4.1.0
Tested up to: 6.0
Stable tag: 4.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 4.1.1 =
* Added `wp_dispensary_details_metabox_save_detail_keys` filter in `admin/metaboxes/wpd-metabox-product-details.php`
* Added `wp_dispensary_prices_metabox_save_price_keys` in `admin/metaboxes/wpd-metabox-product-prices.php`
* Bugfix for metadata not saving correctly in `admin/metaboxes/wpd-metabox-product-details.php`
* Bugfix for metadata not saving correctly in `admin/metaboxes/wpd-metabox-product-prices.php`
* Bugfix for filter names that were used twice in `includes/functions/wp-dispensary-pricing-functions.php`
* Updated prices metabox save meta with array in `admin/metaboxes/wpd-metabox-product-prices.php`
* Updated inline docs throughout various files in the plugin

= 4.1.0 =
* Added 'Curbside pickup' option to payment options in `admin/wp-dispensary-admin-settings.php`
* Added `convert_user_roles` helper function in `includes/functions/wp-dispensary-helper-functions.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.1.0
* Version: 4.1.1
* Author: WP Dispensary
* Author URI: https://www.wpdispensary.com
* License: GPL-2.0+
Expand All @@ -28,7 +28,7 @@
}

// Define the plugin version.
define( 'WP_DISPENSARY_VERSION', '4.1.0' );
define( 'WP_DISPENSARY_VERSION', '4.1.1' );

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

0 comments on commit ab58b69

Please sign in to comment.