Skip to content

Commit 93ab7c5

Browse files
Release v0.5.0
1 parent efa10d4 commit 93ab7c5

File tree

2 files changed

+58
-1
lines changed

2 files changed

+58
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,21 @@ After running `start`, or `build` command, there will be a folder called `/build
5151
You need activate the plugin from plugin list page.
5252
http://localhost/wpex/wp-admin/plugins.php
5353

54+
### Zip making process [Build, Localization, Version replace & Zip]
55+
```sh
56+
# One by one.
57+
npm run build
58+
npm run makepot
59+
npm run version
60+
npm run zip
61+
62+
# Single release command - which actually will run the above all in single command.
63+
npm run release
64+
```
65+
66+
After running `release` command, there will be a folder called `/dist` will be generated at the root directory with `wp-react-kit.zip` project files.
67+
68+
5469
### Run PHP Unit Test
5570

5671
```sh
@@ -176,7 +191,7 @@ Or, it could be your custom processed URL.
176191
[View Detailed documentations with parameters and responses of the REST API](https://github.com/ManiruzzamanAkash/wp-react-kit/blob/main/Rest-API-Docs.MD)
177192

178193
### Version & Changelogs
179-
**v0.5.0 - 14/11/2022**
194+
**v0.5.0 - 15/11/2022**
180195

181196
1. New Feature : Job Create.
182197
2. New Feature : Job Update.
@@ -186,6 +201,9 @@ Or, it could be your custom processed URL.
186201
6. New: Updated logo icon and plugin name.
187202
7. New Components: Input Text-Editor, Improved design.
188203
8. Refactor: Refactored codebase and updated docs.
204+
9. New: Job type seeder.
205+
10. Chore: Zip file generator.
206+
11. Chore: i18n localization generator.
189207

190208
### Version & Changelogs
191209
**v0.4.1 - 18/08/2022**

changelog.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
### Changelogs
2+
3+
**v0.5.0 - 14/11/2022**
4+
5+
1. New Feature : Job Create.
6+
2. New Feature : Job Update.
7+
3. New Feature : Job Delete.
8+
4. New Feature : Job Status change.
9+
5. New API: Company dropdown list.
10+
6. New: Updated logo icon and plugin name.
11+
7. New Components: Input Text-Editor, Improved design.
12+
8. Refactor: Refactored codebase and updated docs.
13+
9. New: Job type seeder.
14+
10. Chore: Zip file generator.
15+
11. Chore: i18n localization generator.
16+
17+
**v0.4.1 - 18/08/2022**
18+
19+
1. Added Jest Unit Test Setup.
20+
2. Added some dummy Jest Unit Test.
21+
3. Fix #11 - Version naming while installing.
22+
23+
**v0.4.0 - 12/08/2022**
24+
25+
1. Added many re-usable general components.
26+
1. Header Component refactored and re-designed.
27+
1. WP-Data setup and made Job Store.
28+
1. Job List Page frontend added.
29+
30+
**v0.3.1 - 11/08/2022**
31+
32+
1. PHPUnit Test cases setup.
33+
1. PHPUnit Test cases added for Job Manager and Job REST API's.
34+
35+
**v0.3.0 - 02/08/2022**
36+
37+
1. Necessary traits to handle - sanitization, query.
38+
1. Advanced setup for migration, seeder, REST API.
39+
1. Jobs, Job Types REST API developed.

0 commit comments

Comments
 (0)