i18ntk 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,11 +2,18 @@
2
2
 
3
3
  All notable changes to the I18N Management Toolkit are documented here. This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
- **Current Version:** 1.0.0 (2025-07-27) - **FIRST STABLE RELEASE** 🎉
5
+ **Current Version:** 1.0.1 (2025-07-27) - **PATCH RELEASE** 🔧
6
6
 
7
7
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
+ ## [1.0.1] - 2025-07-27
11
+
12
+ ### 🔧 Patch Release
13
+ - **Fixed**: Added main `i18ntk` command to bin configuration for easier CLI access
14
+ - **Improved**: Users can now run `i18ntk --version` and `i18ntk --help` directly
15
+ - **Note**: All functionality remains the same, this is purely a usability improvement
16
+
10
17
  ## [1.0.0] - 2025-07-27 - 🎉 FIRST STABLE RELEASE
11
18
 
12
19
  ### 🚀 Welcome to i18ntk v1.0.0!
package/README.md CHANGED
@@ -501,7 +501,7 @@ node dev/tests/test-features.js
501
501
 
502
502
  ---
503
503
 
504
- **Version 1.0.0First stable release with complete CLI suite, enterprise-grade features, and comprehensive documentation. Ready for production use! 🎉**
504
+ **Version:** 1.0.1Patch release with improved CLI access. Added main `i18ntk` command for easier usage. Ready for production use! 🎉
505
505
  ## 📄 License
506
506
 
507
507
  This project is licensed under the MIT License - see the `LICENSE` file for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18ntk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "i18ntk (i18n Toolkit) - A comprehensive, enterprise-grade internationalization (i18n) management toolkit for JavaScript/TypeScript projects with advanced analysis, validation, and automation features",
5
5
  "keywords": [
6
6
  "i18n",
@@ -39,6 +39,7 @@
39
39
  "type": "commonjs",
40
40
  "main": "main/i18ntk-manage.js",
41
41
  "bin": {
42
+ "i18ntk": "main/i18ntk-manage.js",
42
43
  "i18ntk-manage": "main/i18ntk-manage.js",
43
44
  "i18ntk-init": "main/i18ntk-init.js",
44
45
  "i18ntk-analyze": "main/i18ntk-analyze.js",
@@ -122,7 +123,7 @@
122
123
  },
123
124
  "preferGlobal": true,
124
125
  "versionInfo": {
125
- "version": "1.0.0",
126
+ "version": "1.0.1",
126
127
  "releaseDate": "27/07/2025",
127
128
  "lastUpdated": "27/07/2025",
128
129
  "maintainer": "Vladimir Noskov",