Skip to content

Commit

Permalink
Add version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-mendonca committed Mar 22, 2024
1 parent 14b4b53 commit e850bac
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,14 @@ Sure! You are welcome to report any issues or add feature suggestions on the [Gi

## Changelog

### 1.0.2

* Tested with WordPress 6.5.
* Tested with GlotPress 4.0.
* Tested with PHP 8.3.
* Add WP Plugin Check CI test.
* Update dependencies.

### 1.0.1

* Fix log error message typo. Props @fxbenard.
Expand Down
7 changes: 2 additions & 5 deletions gp-format-csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* Plugin URI: https://wordpress.org/plugins/gp-format-csv/
* GitHub Plugin URI: https://github.com/pedro-mendonca/GP-Format-CSV
* Description: Adds the CSV format to GlotPress to export/import translations and originals.
* Version: 1.0.1
* Version: 1.0.2
* Requires at least: 4.9
* Tested up to: 6.1
* Tested up to: 6.5
* Requires PHP: 7.4
* Requires Plugins: glotpress
* Author: Pedro Mendonça
Expand Down Expand Up @@ -61,9 +61,6 @@
define( 'GP_FORMAT_CSV_FILE', plugin_basename( __FILE__ ) );





// Check for PHP compatibility.
// Adapted from https://pento.net/2014/02/18/dont-let-your-plugin-be-activated-on-incompatible-sites/.
add_action( 'admin_init', __NAMESPACE__ . '\gp_format_csv_check_version' );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"requires": true,
"name": "gp-format-csv",
"version": "1.0.1",
"version": "1.0.2",
"description": "Adds the CSV format to GlotPress to export/import translations and originals.",
"author": "Pedro Mendonça",
"license": "GPL-2.0-or-later",
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Contributors: pedromendonca
Donate link: https://github.com/sponsors/pedro-mendonca
Tags: WordPress, i18n, l10n, GlotPress, csv
Requires at least: 4.9
Tested up to: 6.1
Tested up to: 6.5
Requires PHP: 7.4
Requires Plugins: glotpress
Stable tag: 1.0.1
Stable tag: 1.0.2
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -85,6 +85,13 @@ Sure! You are welcome to report any issues or add feature suggestions on the [Gi

== Changelog ==

= 1.0.2 =
* Tested with WordPress 6.5.
* Tested with GlotPress 4.0.
* Tested with PHP 8.3.
* Add WP Plugin Check CI test.
* Update dependencies.

= 1.0.1 =
* Fix log error message typo. Props @fxbenard.

Expand Down
2 changes: 1 addition & 1 deletion tests/phpstan/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// Set plugin version.
if ( ! defined( 'GP_FORMAT_CSV_VERSION' ) ) {
define( 'GP_FORMAT_CSV_VERSION', '1.0.1' );
define( 'GP_FORMAT_CSV_VERSION', '1.0.2' );
}

// Set plugin required PHP version. Needed for PHP compatibility check for WordPress < 5.1.
Expand Down

0 comments on commit e850bac

Please sign in to comment.