diff --git a/changelog.txt b/changelog.txt index e1822710b..cf8b0b9df 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ += 1.30.1 = +* Fix: Minor issue with a strict standard error being displayed on some instances. (@alexsanford) + = 1.30.0 = * Enhancement: Adds ability to have a reCAPTCHA field to check if job listing author is human. (@jom) * Enhancement: Allows for option to make edits to job listings force listing back into pending approval status. (@jom) diff --git a/languages/wp-job-manager.pot b/languages/wp-job-manager.pot index 6150b55b0..c45d2a0a3 100644 --- a/languages/wp-job-manager.pot +++ b/languages/wp-job-manager.pot @@ -2,9 +2,9 @@ # This file is distributed under the GPL2+. msgid "" msgstr "" -"Project-Id-Version: WP Job Manager 1.30.0\n" +"Project-Id-Version: WP Job Manager 1.30.1\n" "Report-Msgid-Bugs-To: https://github.com/Automattic/WP-Job-Manager/issues\n" -"POT-Creation-Date: 2018-02-23 13:04:57+00:00\n" +"POT-Creation-Date: 2018-03-12 18:10:30+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1482,27 +1482,27 @@ msgstr "" msgid "Keyword" msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:327 +#: lib/usage-tracking/class-usage-tracking-base.php:333 msgid "Every Two Weeks" msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:466 +#: lib/usage-tracking/class-usage-tracking-base.php:472 msgid "Enable Usage Tracking" msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:469 +#: lib/usage-tracking/class-usage-tracking-base.php:475 msgid "Disable Usage Tracking" msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:475 +#: lib/usage-tracking/class-usage-tracking-base.php:481 msgid "Usage data enabled. Thank you!" msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:478 +#: lib/usage-tracking/class-usage-tracking-base.php:484 msgid "Disabled usage tracking." msgstr "" -#: lib/usage-tracking/class-usage-tracking-base.php:481 +#: lib/usage-tracking/class-usage-tracking-base.php:487 msgid "Something went wrong. Please try again later." msgstr "" diff --git a/package.json b/package.json index 30c7ca793..bf4a206e1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wp-job-manager", "title": "WP Job Manager", - "version": "1.30.0", + "version": "1.30.1", "homepage": "http://wordpress.org/plugins/wp-job-manager/", "license": "GPL-2.0+", "repository": "automattic/wp-job-manager", diff --git a/readme.md b/readme.md index 90fc1c578..7e7c4fe98 100644 --- a/readme.md +++ b/readme.md @@ -3,7 +3,7 @@ **Tags:** job manager, job listing, job board, job management, job lists, job list, job, jobs, company, hiring, employment, employer, employees, candidate, freelance, internship, job listings, positions, board, application, hiring, listing, manager, recruiting, recruitment, talent **Requires at least:** 4.3.1 **Tested up to:** 4.9 -**Stable tag:** 1.30.0 +**Stable tag:** 1.30.1 **License:** GPLv3 **License URI:** http://www.gnu.org/licenses/gpl-3.0.html @@ -141,6 +141,9 @@ You can view (and contribute) translations via the [translate.wordpress.org](htt ## Changelog ## +### 1.30.1 ### +* Fix: Minor issue with a strict standard error being displayed on some instances. (@alexsanford) + ### 1.30.0 ### * Enhancement: Adds ability to have a reCAPTCHA field to check if job listing author is human. (@jom) * Enhancement: Allows for option to make edits to job listings force listing back into pending approval status. (@jom) diff --git a/readme.txt b/readme.txt index 3ed10b513..6ee55df93 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: mikejolley, automattic, adamkheckler, annezazu, cena, chaselivings Tags: job manager, job listing, job board, job management, job lists, job list, job, jobs, company, hiring, employment, employer, employees, candidate, freelance, internship, job listings, positions, board, application, hiring, listing, manager, recruiting, recruitment, talent Requires at least: 4.3.1 Tested up to: 4.9 -Stable tag: 1.30.0 +Stable tag: 1.30.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -141,6 +141,9 @@ You can view (and contribute) translations via the [translate.wordpress.org](htt == Changelog == += 1.30.1 = +* Fix: Minor issue with a strict standard error being displayed on some instances. (@alexsanford) + = 1.30.0 = * Enhancement: Adds ability to have a reCAPTCHA field to check if job listing author is human. (@jom) * Enhancement: Allows for option to make edits to job listings force listing back into pending approval status. (@jom) diff --git a/wp-job-manager.php b/wp-job-manager.php index c6201e7ac..b8f5da692 100644 --- a/wp-job-manager.php +++ b/wp-job-manager.php @@ -3,7 +3,7 @@ * Plugin Name: WP Job Manager * Plugin URI: https://wpjobmanager.com/ * Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site. - * Version: 1.30.0 + * Version: 1.30.1 * Author: Automattic * Author URI: https://wpjobmanager.com/ * Requires at least: 4.1 @@ -58,7 +58,7 @@ public static function instance() { */ public function __construct() { // Define constants - define( 'JOB_MANAGER_VERSION', '1.30.0' ); + define( 'JOB_MANAGER_VERSION', '1.30.1' ); define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );