Skip to content

Commit f4f0483

Browse files
committed
chore: bump version to 1.0.0-alpha.7 and update CHANGELOG
- Remove 'WP' from plugin name to comply with WordPress.org - Update copyright year to 2026 in landing page - Update all documentation and user-facing strings
1 parent b9c52da commit f4f0483

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.7] - 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+
1024
## [1.0.0-alpha.6] - 2025-01-14
1125

1226
### Fixed
@@ -127,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127141
- Node.js polyfills: path, zlib, stream, buffer, util
128142
- Dictionary files automatically copied to build directory
129143

130-
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.6...HEAD
144+
[Unreleased]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.7...HEAD
145+
[1.0.0-alpha.7]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.6...v1.0.0-alpha.7
131146
[1.0.0-alpha.6]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
132147
[1.0.0-alpha.5]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.4...v1.0.0-alpha.5
133148
[1.0.0-alpha.4]: https://github.com/firestar300/wp-kakitai/compare/v1.0.0-alpha.3...v1.0.0-alpha.4

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.6",
3+
"version": "1.0.0-alpha.7",
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.6
7+
Stable tag: 1.0.0-alpha.7
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.6
5+
* Version: 1.0.0-alpha.7
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.6' );
23+
define( 'WP_KAKITAI_VERSION', '1.0.0-alpha.7' );
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)