diff --git a/README.md b/README.md index caaa60b..aae1cc3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **Contributors:** [brainstormforce](https://profiles.wordpress.org/brainstormforce) **Tags:** mautic, contacts, api, count, email **Requires at least:** 4.1 -**Stable tag:** 1.0.5 +**Stable tag:** 1.0.6 **Tested up to:** 5.9 Display your Mautic Contacts count on your website @@ -28,6 +28,9 @@ A very useful plugin to display your mautic contacts count on your website. This ## Changelog ## +### Version 1.0.6 ### +- Fix: Code updated according to coding standard. + ### Version 1.0.5 ### - Improvement: Improvements as per WordPress coding standards. diff --git a/contacts-in-mautic.php b/contacts-in-mautic.php index b3659ce..605c027 100644 --- a/contacts-in-mautic.php +++ b/contacts-in-mautic.php @@ -3,7 +3,7 @@ * Plugin Name: Contacts in Mautic * Plugin URI: http://brainstormforce.com * Description: Get All Mautic Contacts Count using simple shortcode. - * Version: 1.0.5 + * Version: 1.0.6 * Author: Brainstormforce * Author URI: http://brainstormforce.com * License: GNU General Public License v2.0 @@ -37,7 +37,7 @@ } // Set the BSF_CONTACT_MAUTIC_VERSION. -define( 'BSF_CONTACT_MAUTIC_VERSION', '1.0.5' ); +define( 'BSF_CONTACT_MAUTIC_VERSION', '1.0.6' ); // Include the auto update file. require_once plugin_dir_path( __FILE__ ) . 'classes/class-bsf-cm-auto-update.php'; @@ -599,4 +599,4 @@ function bsfm_connect_mautic_username_password( $data, $anonymous ) { $mautic_response['body'] = $body; return $mautic_response; -} \ No newline at end of file +} diff --git a/readme.txt b/readme.txt index 80f4453..c0f62fa 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: brainstormforce Tags: mautic, contacts, api, count, email Requires at least: 4.1 -Stable tag: 1.0.5 +Stable tag: 1.0.6 Tested up to: 5.9 Display your Mautic Contacts count on your website @@ -28,6 +28,9 @@ A very useful plugin to display your mautic contacts count on your website. This == Changelog == += Version 1.0.6 = +- Fix: Code updated according to coding standard. + = Version 1.0.5 = - Improvement: Improvements as per WordPress coding standards.