diff --git a/CHANGELOG.md b/CHANGELOG.md index 64cbda5f..bf573893 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +##### [Version 1.2.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.1...v1.2.2) (2023-10-05) + +### Improvements +- **Onboarding UX**: Enhanced the onboarding process for a smoother user experience. + +### Bug Fixes +- **Onboarding redirection**: Fixed the issue where users got redirected to the old onboarding if they were installing the Cloud Templates & Patterns collection plugin from the dashboard + ##### [Version 1.2.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.0...v1.2.1) (2023-09-25) - [Fix] Open the new onboarding when Templates Patterns Collection is installed from Neve welcome notice diff --git a/README.md b/README.md index 8f3b3f58..2159ba67 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,17 @@ Yes, you can. You can either chose to import one template or the entire starter ## Changelog ## +##### [Version 1.2.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.1...v1.2.2) (2023-10-05) + +### Improvements +- **Onboarding UX**: Enhanced the onboarding process for a smoother user experience. + +### Bug Fixes +- **Onboarding redirection**: Fixed the issue where users got redirected to the old onboarding if they were installing the Cloud Templates & Patterns collection plugin from the dashboard + + + + ##### [Version 1.2.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.0...v1.2.1) (2023-09-25) - [Fix] Open the new onboarding when Templates Patterns Collection is installed from Neve welcome notice diff --git a/composer.json b/composer.json index 314faf77..d9ccc988 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "codeinwp/templates-patterns-collection", "description": "Templates and Patterns Collection Plugin", - "version": "1.2.1", + "version": "1.2.2", "license": "GPL-3.0-or-later", "homepage": "https://github.com/Codeinwp/templates-patterns-collection", "authors": [ diff --git a/includes/Main.php b/includes/Main.php index 8017ea49..88d491c9 100755 --- a/includes/Main.php +++ b/includes/Main.php @@ -19,7 +19,7 @@ class Main { * * @var string Version string. */ - const VERSION = '1.2.1'; + const VERSION = '1.2.2'; /** * Sites Library API URL. * diff --git a/package.json b/package.json index 116a6d76..d1bd16fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "templates-patterns-collection", - "version": "1.2.1", + "version": "1.2.2", "description": "ThemeIsle Templates and Patterns Collection", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 841c2b55..c50de4b7 100644 --- a/readme.txt +++ b/readme.txt @@ -39,6 +39,17 @@ Yes, you can. You can either chose to import one template or the entire starter == Changelog == +##### [Version 1.2.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.1...v1.2.2) (2023-10-05) + +### Improvements +- **Onboarding UX**: Enhanced the onboarding process for a smoother user experience. + +### Bug Fixes +- **Onboarding redirection**: Fixed the issue where users got redirected to the old onboarding if they were installing the Cloud Templates & Patterns collection plugin from the dashboard + + + + ##### [Version 1.2.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.2.0...v1.2.1) (2023-09-25) - [Fix] Open the new onboarding when Templates Patterns Collection is installed from Neve welcome notice diff --git a/templates-patterns-collection.php b/templates-patterns-collection.php index e6dd5b33..23a86209 100755 --- a/templates-patterns-collection.php +++ b/templates-patterns-collection.php @@ -2,7 +2,7 @@ /** * Plugin Name: Templates Patterns Collection * Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme. - * Version: 1.2.1 + * Version: 1.2.2 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPLv3 @@ -55,7 +55,7 @@ function ti_tpc_load_textdomain() { load_plugin_textdomain( 'templates-patterns-collection', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); } -define( 'TIOB_VERSION', '1.2.1' ); +define( 'TIOB_VERSION', '1.2.2' ); define( 'TIOB_URL', plugin_dir_url( __FILE__ ) ); define( 'TIOB_PATH', dirname( __FILE__ ) . '/' ); define( 'TIOB_BASENAME', plugin_basename( __FILE__ ) );