Skip to content

Commit 1ab53e3

Browse files
committed
chore(release): v0.4.0
1 parent badf884 commit 1ab53e3

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v0.4.0](https://github.com/hsayed21/json-i18n-key/compare/v0.3.0...v0.4.0)
8+
9+
- feat: support diagnostics and quick fixes for missing keys [`266ed89`](https://github.com/hsayed21/json-i18n-key/commit/266ed8925b4f532073254d5532530b717ed26145)
10+
- feat: new command to copy key values from existing ones [`badf884`](https://github.com/hsayed21/json-i18n-key/commit/badf8840634960f86863ecc6e4f8188ba3881331)
11+
- chore: update regex for KeyPath [`311904b`](https://github.com/hsayed21/json-i18n-key/commit/311904bfa63a207ba92a8adfec657adb885f87c1)
12+
- fix: watcher was not fired [`0d6c9f4`](https://github.com/hsayed21/json-i18n-key/commit/0d6c9f44c4bc60481a1a2180f8fb9e41275a6299)
13+
- ci: not include release version commit in notes [`bfc143b`](https://github.com/hsayed21/json-i18n-key/commit/bfc143be7d7bb9b9793ebdd8e0cc5e674af322f5)
14+
715
#### [v0.3.0](https://github.com/hsayed21/json-i18n-key/compare/v0.2.0...v0.3.0)
816

17+
> 21 December 2024
18+
919
- feat: new option for suggest existing keys for reuse when adding new one [`0939412`](https://github.com/hsayed21/json-i18n-key/commit/093941225d8dbace5bb508111c4619dc373a6f5a)
1020
- feat: new command to clean up unused translation keys [`27bd752`](https://github.com/hsayed21/json-i18n-key/commit/27bd752ccfe4e0a3bd8aa22ad4703b11a33ca281)
1121
- feat: new command search for keys and values that contain a specific string [`5d26b8c`](https://github.com/hsayed21/json-i18n-key/commit/5d26b8c94db60c720aa2f2dab8072a42c7dfd32a)
22+
- chore(release): v0.3.0 [`3650ab5`](https://github.com/hsayed21/json-i18n-key/commit/3650ab589e1e5f6e131a4bf6e22d47f7ca478581)
1223
- ci: skip release commits in 'release notes' [`e320845`](https://github.com/hsayed21/json-i18n-key/commit/e3208459bbb9e1a415bf6b7833aaccbeab335621)
1324

1425
#### [v0.2.0](https://github.com/hsayed21/json-i18n-key/compare/0.1.0...v0.2.0)

package-lock.json

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

package.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A Visual Studio Code extension to help you manage translation keys in JSON files.",
55
"author": "Hamada Sayed",
66
"publisher": "hsayed",
7-
"version": "0.3.0",
7+
"version": "0.4.0",
88
"engines": {
99
"vscode": "^1.93.0"
1010
},
@@ -196,8 +196,14 @@
196196
},
197197
"capabilities": {
198198
"codeActionProvider": {
199-
"languages": ["typescript", "javascript", "html"],
200-
"actions": ["quickfix"]
199+
"languages": [
200+
"typescript",
201+
"javascript",
202+
"html"
203+
],
204+
"actions": [
205+
"quickfix"
206+
]
201207
}
202208
},
203209
"keybindings": [

0 commit comments

Comments
 (0)