Skip to content

Commit c4c69e3

Browse files
committed
chore: bump version to 1.0.0 - First stable release
- Remove alpha suffix for WordPress.org compatibility - WordPress.org requires numeric version format (1.0.0) - Ready for WordPress.org submission
1 parent f4f0483 commit c4c69e3

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0] - 2025-01-14
11+
12+
### Changed
13+
14+
- Remove 'WP' from plugin name to comply with WordPress.org requirements
15+
- Plugin name changed from 'WP Kakitai' to 'Kakitai - Japanese Furigana'
16+
- Updated all user-facing strings and documentation
17+
- Updated landing page with new plugin name
18+
19+
### Fixed
20+
21+
- Plugin now complies with WordPress.org naming restrictions
22+
- All references to plugin name updated consistently across codebase
23+
- Dictionary files are automatically decompressed after download (no compressed files in plugin)
24+
- Use `gzdecode()` for proper .gz file decompression
25+
1026
## [1.0.0-alpha.7] - 2025-01-14
1127

1228
### Changed
@@ -141,7 +157,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141157
- Node.js polyfills: path, zlib, stream, buffer, util
142158
- Dictionary files automatically copied to build directory
143159

144-
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.7...HEAD
160+
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0...HEAD
161+
[1.0.0]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.7...v1.0.0
145162
[1.0.0-alpha.7]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.6...v1.0.0-alpha.7
146163
[1.0.0-alpha.6]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
147164
[1.0.0-alpha.5]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.4...v1.0.0-alpha.5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-kakitai",
3-
"version": "1.0.0-alpha.7",
3+
"version": "1.0.0",
44
"description": "Provide Furigana for Japanese text.",
55
"author": "firestar300",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: japanese, furigana, kanji, gutenberg
44
Requires at least: 6.7
55
Tested up to: 6.9
66
Requires PHP: 7.4
7-
Stable tag: 1.0.0-alpha.7
7+
Stable tag: 1.0.0
88
License: GPL-2.0-or-later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

wp-kakitai.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Kakitai - Japanese Furigana
44
* Description: Provide Furigana for Japanese text.
5-
* Version: 1.0.0-alpha.7
5+
* Version: 1.0.0
66
* Requires at least: 6.7
77
* Requires PHP: 7.4
88
* Author: firestar300
@@ -20,7 +20,7 @@
2020
}
2121

2222
// Plugin constants
23-
define( 'WP_KAKITAI_VERSION', '1.0.0-alpha.7' );
23+
define( 'WP_KAKITAI_VERSION', '1.0.0' );
2424
define( 'WP_KAKITAI_URL', plugin_dir_url( __FILE__ ) );
2525
define( 'WP_KAKITAI_DIR', plugin_dir_path( __FILE__ ) );
2626
define( 'WP_KAKITAI_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );

0 commit comments

Comments
 (0)