diff --git a/CHANGELOG-zh.md b/CHANGELOG-zh.md index d4d763a..80edbe8 100644 --- a/CHANGELOG-zh.md +++ b/CHANGELOG-zh.md @@ -1,3 +1,12 @@ +## [1.2.1](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.2.0...1.2.1) (2025-07-16) + + +### ✨ 新功能 + +* 新增设置视图并优化代码嵌入初始化逻辑 (#20) ([c049ad6](https://github.com/RavenHogWarts/obsidian-ace-code-editor/commit/c049ad60f9ac017646733a2c03e1d184e4b05fd8)), closes [#20](https://github.com/RavenHogWarts/obsidian-ace-code-editor/issues/20) + + + # [1.2.0](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.3...1.2.0) (2025-06-22) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c17848..d8093ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.2.1](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.2.0...1.2.1) (2025-07-16) + + +### ✨ Features + +* Added settings view and optimized code embedding initialization logic (#20) ([c049ad6](https://github.com/RavenHogWarts/obsidian-ace-code-editor/commit/c049ad60f9ac017646733a2c03e1d184e4b05fd8)), closes [#20](https://github.com/RavenHogWarts/obsidian-ace-code-editor/issues/20) + + + # [1.2.0](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.3...1.2.0) (2025-06-22) diff --git a/manifest.json b/manifest.json index a0012a4..534c0f5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "ace-code-editor", "name": "Ace Code Editor", - "version": "1.2.0", + "version": "1.2.1", "minAppVersion": "1.8.0", "description": "An enhanced code editor using Ace editor, providing syntax highlighting, code folding, and other advanced editing features.", "author": "RavenHogWarts", diff --git a/package.json b/package.json index 0e9a79e..b6bcb3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ace-code-editor", - "version": "1.2.0", + "version": "1.2.1", "description": "An enhanced code editor using Ace editor, providing syntax highlighting, code folding, and other advanced editing features.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index dcd7c28..cbc483e 100644 --- a/versions.json +++ b/versions.json @@ -7,5 +7,6 @@ "1.1.1": "1.8.0", "1.1.2": "1.8.0", "1.1.3": "1.8.0", - "1.2.0": "1.8.0" + "1.2.0": "1.8.0", + "1.2.1": "1.8.0" }