Skip to content

Commit

Permalink
Bump version to 1.29.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jom committed Dec 4, 2017
1 parent 747f6bd commit 09f86cd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.29.2 =
* Fix: PHP Notice when sanitizing multiple inputs (bug in 1.29.1 release). (@albionselimaj)

= 1.29.1 =
* Enhancement: When retrieving listings in `[jobs]` shortcode, setting `orderby` to `rand_featured` will still place featured listings at the top. (@jom)
* Enhancement: Scroll to show application details when clicking on "Apply for Job" button. (@jom)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wp-job-manager",
"title": "WP Job Manager",
"version": "1.29.1",
"version": "1.29.2",
"homepage": "http://wordpress.org/plugins/wp-job-manager/",
"license": "GPL-2.0+",
"repository": "automattic/wp-job-manager",
Expand Down
5 changes: 4 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,17 @@ You can view (and contribute) translations via the [translate.wordpress.org](htt

## Changelog ##

### 1.29.2 ###
* Fix: PHP Notice when sanitizing multiple inputs (bug in 1.29.1 release). (@albionselimaj)

### 1.29.1 ###
* Enhancement: When retrieving listings in `[jobs]` shortcode, setting `orderby` to `rand_featured` will still place featured listings at the top. (@jom)
* Enhancement: Scroll to show application details when clicking on "Apply for Job" button. (@jom)
* Change: Updates `account-signin.php` template to warn users email will be confirmed only if that is enabled. (@jom)
* Fix: Sanitize URLs and emails differently on the application method job listing field. (@jom)
* Fix: Remove PHP notice in Featured Jobs widget. (@himanshuahuja96)
* Fix: String fix for consistent spelling of "license" when appearing in strings. (@garrett-eclipse)
* Fix: Issue with paid add-on licenses not showing up when some third-party plugins were installed. (@jom)
* Fix: Issue with paid add-on licenses not showing up when some third-party plugins were installed. (@jom)
* Dev: Runs new actions (`job_manager_recent_jobs_widget_before` and `job_manager_recent_jobs_widget_after`) inside Recent Jobs widget. (@jom)
* Dev: Change `wpjm_get_the_job_types()` to return an empty array when job types are disabled. (@jom)
* See all: https://github.com/Automattic/WP-Job-Manager/milestone/15?closed=1
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.29.1
Stable tag: 1.29.2
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -141,6 +141,9 @@ You can view (and contribute) translations via the [translate.wordpress.org](htt

== Changelog ==

= 1.29.2 =
* Fix: PHP Notice when sanitizing multiple inputs (bug in 1.29.1 release). (@albionselimaj)

= 1.29.1 =
* Enhancement: When retrieving listings in `[jobs]` shortcode, setting `orderby` to `rand_featured` will still place featured listings at the top. (@jom)
* Enhancement: Scroll to show application details when clicking on "Apply for Job" button. (@jom)
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: 1.29.1
* Version: 1.29.2
* Author: Automattic
* Author URI: https://wpjobmanager.com/
* Requires at least: 4.1
Expand Down Expand Up @@ -58,7 +58,7 @@ public static function instance() {
*/
public function __construct() {
// Define constants
define( 'JOB_MANAGER_VERSION', '1.29.1' );
define( 'JOB_MANAGER_VERSION', '1.29.2' );
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__ ) ) ) );

Expand Down

0 comments on commit 09f86cd

Please sign in to comment.