Skip to content

Commit

Permalink
1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo-sg-pacheco committed Oct 6, 2022
1 parent 37d4412 commit 1cff339
Show file tree
Hide file tree
Showing 5 changed files with 146 additions and 123 deletions.
4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.wordpress-org/ export-ignore
.gitignore export-ignore
README.md export-ignore
README.md export-ignore
# GIT - Release version
/git-tag.sh export-ignore
8 changes: 8 additions & 0 deletions git-tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Releases a new tag.
read -p "Enter tag version: " version
git add --all :/
git commit -am "$version"
git push
git tag -a $version -m "$version"
git push origin $version
4 changes: 2 additions & 2 deletions popup-notices-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
* Plugin Name: Pop-up Notices for WooCommerce
* Plugin URI: https://wordpress.org/plugins/popup-notices-for-woocommerce
* Description: Turn your WooCommerce Notices into Popups
* Version: 1.3.8-dev
* Version: 1.3.8
* Author: Thanks to IT
* Author URI: https://github.com/thanks-to-it
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: popup-notices-for-woocommerce
* Domain Path: /src/languages
* WC requires at least: 3.0.0
* WC tested up to: 6.1
* WC tested up to: 6.9
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand Down
9 changes: 5 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: karzin
Tags: popup,notices,woocommerce,notice,modal
Requires at least: 4.4
Tested up to: 5.8
Stable tag: 1.3.7
Tested up to: 6.0
Stable tag: 1.3.8
Requires PHP: 5.6.0
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -99,8 +99,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

== Changelog ==

= 1.3.8 - 17/01/2022 =
* WC tested up to: 6.1.
= 1.3.8 - 05/10/2022 =
* WC tested up to: 6.9.
* Tested up to: 6.0.
* Add Pro compatibility option with YITH points and rewards.

= 1.3.7 - 12/01/2022 =
Expand Down
Loading

0 comments on commit 1cff339

Please sign in to comment.