Skip to content

Commit 827cfa7

Browse files
committed
UPDATE: Readme and version change to 3.5.0
1 parent 68692c1 commit 827cfa7

File tree

6 files changed

+47
-118
lines changed

6 files changed

+47
-118
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
### V 3.5.0 - 2024-10-31
4+
* Added: Job listing block.
5+
* Minor bug fixes and code improvements.
6+
37
### V 3.4.7 - 2024-09-24
48
* Fixed: Recaptcha won't reset after submitting the application form.
59
* Minor bug fixes and code improvements.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ The plugin comes with two layouts - Grid and List which are designed carefully a
9595

9696
## Changelog
9797

98+
**V 3.5.0 - 2024-10-31**
99+
* Added: Job listing block.
100+
* Minor bug fixes and code improvements.
101+
98102
**V 3.4.7 - 2024-09-24**
99103
* Fixed: Recaptcha won't reset after submitting the application form.
100104
* Minor bug fixes and code improvements.

package-lock.json

+32-115
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-job-openings",
3-
"version": "4.0.0",
3+
"version": "3.5.0",
44
"description": "Super simple Job Listing plugin to manage Job Openings and Applicants on your WordPress site.",
55
"main": "gulpfile.js",
66
"scripts": {

readme.txt

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ The plugin comes with two layouts - Grid and List which are designed carefully a
103103

104104
== Changelog ==
105105

106+
= V 3.5.0 - 2024-10-31 =
107+
* Added: Job listing block.
108+
* Minor bug fixes and code improvements.
109+
106110
= V 3.4.7 - 2024-09-24 =
107111
* Fixed: Recaptcha won't reset after submitting the application form.
108112
* Minor bug fixes and code improvements.

wp-job-openings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Super simple Job Listing plugin to manage Job Openings and Applicants on your WordPress site.
66
* Author: AWSM Innovations
77
* Author URI: https://awsm.in/
8-
* Version: 4.0.0
8+
* Version: 3.5.0
99
* Requires at least: 4.8
1010
* Requires PHP: 5.6
1111
* License: GPLv2
@@ -37,7 +37,7 @@
3737
define( 'AWSM_JOBS_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
3838
}
3939
if ( ! defined( 'AWSM_JOBS_PLUGIN_VERSION' ) ) {
40-
define( 'AWSM_JOBS_PLUGIN_VERSION', '4.0.0' );
40+
define( 'AWSM_JOBS_PLUGIN_VERSION', '3.5.0' );
4141
}
4242
if ( ! defined( 'AWSM_JOBS_UPLOAD_DIR_NAME' ) ) {
4343
define( 'AWSM_JOBS_UPLOAD_DIR_NAME', 'awsm-job-openings' );

0 commit comments

Comments
 (0)