Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release WP Job Manager 2.1.1 #2652

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions languages/wp-job-manager.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# This file is distributed under the GPL2+.
msgid ""
msgstr ""
"Project-Id-Version: WP Job Manager 2.1.0\n"
"Project-Id-Version: WP Job Manager 2.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-job-manager/\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-11-17T13:34:50+00:00\n"
"POT-Creation-Date: 2023-11-21T19:04:25+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Generator: WP-CLI 2.9.0\n"
"X-Domain: wp-job-manager\n"

#. Plugin Name of the plugin
Expand Down Expand Up @@ -2259,7 +2259,6 @@ msgstr ""
#: includes/helper/class-wp-job-manager-helper.php:490
#: includes/helper/views/html-licenses.php:44
#: includes/helper/views/html-licenses.php:170
#: tests/php/tests/includes/helper/test_class.wp-job-manager-helper.php:155
msgid "Activate License"
msgstr ""

Expand Down Expand Up @@ -2770,10 +2769,6 @@ msgstr ""
msgid "%1$s submitted successfully."
msgstr ""

#: tests/php/tests/includes/helper/test_class.wp-job-manager-helper.php:122
msgid "Requires Attention"
msgstr ""

mikeyarce marked this conversation as resolved.
Show resolved Hide resolved
#: wp-job-manager-functions.php:368
msgctxt "post status"
msgid "Draft"
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,6 +1,6 @@
{
"name": "wp-job-manager",
"version": "2.1.0",
"version": "2.1.1",
"description": "WP Job Manager",
"author": "Automattic",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: job manager, job listing, job board, job management, job lists, job list,
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.2
Stable tag: 2.1.0
Stable tag: 2.1.1
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down
4 changes: 2 additions & 2 deletions wp-job-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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: 2.1.0
* Version: 2.1.1
* Author: Automattic
* Author URI: https://wpjobmanager.com/
* Requires at least: 6.1
Expand All @@ -21,7 +21,7 @@
}

// Define constants.
define( 'JOB_MANAGER_VERSION', '2.1.0' );
define( 'JOB_MANAGER_VERSION', '2.1.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__ ) ) ) );
define( 'JOB_MANAGER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
Loading