Skip to content

Commit

Permalink
Merge pull request #131 from Beee4life/feature/1.13.0
Browse files Browse the repository at this point in the history
Feature/1.13.0
  • Loading branch information
Beee4life authored Apr 21, 2024
2 parents faa3f72 + 8c913e7 commit 31635f7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ACF_City_Selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Plugin Name: ACF City Selector
Plugin URI: https://acf-city-selector.com
Description: An extension for ACF which allows you to select a city based on country and province/state.
Version: 1.12.0
Tested up to: 6.4.3
Version: 1.13.0
Tested up to: 6.5.2
Requires PHP: 7.0
Author: Beee
Author URI: https://berryplasman.com
Expand Down Expand Up @@ -35,7 +35,7 @@ public function __construct() {
$this->settings = array(
'db_version' => '1.0',
'url' => plugin_dir_url( __FILE__ ),
'version' => '1.12.0',
'version' => '1.13.0',
);

if ( ! class_exists( 'ACFCS_WEBSITE_URL' ) ) {
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Welcome to the City Selector plugin, which is an extension for [Advanced Custom
<a name="version"></a>
### Version

1.12.0 - released 09.03.24
1.13.0 - 21.04.24

<a name="description"></a>
### Description
Expand Down Expand Up @@ -228,6 +228,12 @@ I got the idea for this plugin through [Fabrizio Sabato](https://github.com/fab0
<a name="changelog"></a>
### Changelog

1.13.0
* remove typo in function call

1.12.0
* fix clearing of transients

1.11.0
* fix incorrect index for store as single meta

Expand Down
2 changes: 1 addition & 1 deletion inc/acfcs-actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function acfcs_delete_transients( $country_code = false ) {
}
}
}
add_action( 'acfcs_delete_transients', 'i will try acfcs_delete_transients' );
add_action( 'acfcs_delete_transients', 'acfcs_delete_transients' );
add_action( 'acfcs_after_success_import', 'acfcs_delete_transients' );
add_action( 'acfcs_after_success_import_raw', 'acfcs_delete_transients' );
add_action( 'acfcs_after_success_nuke', 'acfcs_delete_transients' );
Expand Down
9 changes: 6 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Tags: acf, custom, fields, custom fields, select, country, city, state, province
Contributors: beee
Requires at least: 3.6.0
Requires PHP: 7.0
Tested up to: 6.4.3
Stable tag: 1.12.0
Tested up to: 6.5.2
Stable tag: 1.13.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -41,11 +41,14 @@ A. Please read the FAQ @ [https://acf-city-selector.com/documentation/](https://

== Changelog ==

= 1.13.0 =
* Fix typo in function call

= 1.12.0 =
* Fix clear transients

= 1.11.0 =
* ?
* fix incorrect index for store as single meta

= 1.10.1 =
* New language files
Expand Down

0 comments on commit 31635f7

Please sign in to comment.