Skip to content

Commit 07e3480

Browse files
committed
fix: fix typo
Signed-off-by: zongz <zongzhe1024@163.com>
1 parent b4bda80 commit 07e3480

File tree

2 files changed

+15
-13
lines changed
  • blog/2024-09-18-kcl-0.10.0-release
  • i18n/zh-CN/docusaurus-plugin-content-blog/2024-09-18-kcl-0.10.0-release

2 files changed

+15
-13
lines changed

blog/2024-09-18-kcl-0.10.0-release/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ tags: [Release Blog, KCL]
1111

1212
The KCL team is pleased to announce that **KCL v0.10.0 is now available**! This release has brought three key updates to everyone
1313

14-
WIP
14+
- _Enhance the coding experience and efficiency with a more performant, feature-rich, and less error-prone KCL language, toolchain, and IDE._
15+
- _A more comprehensive and diverse set of standard libraries, third-party libraries, and community ecosystem integrations, covering different application scenarios and requirements._
16+
- The WASM SDK supports browser running and the new KCL Playground._
1517

1618
[KCL](https://github.com/kcl-lang) is an open-source, constraint-based record and functional language hosted by Cloud Native Computing Foundation (CNCF). KCL improves the writing of numerous complex configurations, such as cloud-native scenarios, through its mature programming language technology and practice. It is dedicated to building better modularity, scalability, and stability around configurations, simpler logic writing, faster automation, and great built-in or API-driven integrations.
1719

@@ -201,7 +203,7 @@ Taking <https://github.com/kcl-lang/flask-demo-kcl-manifests.git> as an example,
201203
kcl mod add cc --git https://github.com/kcl-lang/flask-demo-kcl-manifests.git --commit 8308200
202204
```
203205

204-
- The kcl-playground based on the wasm backend is online.
206+
- The kcl-playground based on the WASM backend is online.
205207

206208
[kclplayground](/img/blog/2024-09-18-kcl-0.10.0-release/kclplayground.png)
207209

@@ -372,9 +374,9 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
372374
- Added KCL Kotlin and Swift language SDKs, which have not yet officially released dependency packages. Contributions are welcome.
373375
- Added KCL WASM lib support for node.js and browser integration.
374376
- Refactored and optimized the KCL Python/Go/Java code.
375-
- KCL wasm SDK fixed the issue caused by the '\0' escape character.
377+
- KCL WASM SDK fixed the issue caused by the '\0' escape character.
376378
- KCL lib supports cross-platform compilation.
377-
- KCL wasm SDK adds some test cases.
379+
- KCL WASM SDK adds some test cases.
378380

379381
#### Multi-Language Plugins
380382

@@ -383,7 +385,7 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
383385

384386
### 📖 Documentation Updates
385387

386-
- Added Python, Java, Node.js, Rust, Wasm, .NET, C/C++ and other multi-language API documents.
388+
- Added Python, Java, Node.js, Rust, WASM, .NET, C/C++ and other multi-language API documents.
387389
- Updated the IDE Quick Start document.
388390
- New Blog "A Comparative Overview of Jsonnet and KCL".
389391
- Updated the crd in "Adapt From Kubernetes CRD Resources" in the documentation.
@@ -393,7 +395,7 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
393395
- Added the document for `include` and `exclude` fields in the kcl.mod.
394396
- Added FAQ about the `docker-credential-desktop not found` solution.
395397
- Added reference documents for some resources in the konfig.
396-
- Add API documentation for KCL wasm.
398+
- Add API documentation for KCL WASM.
397399
- Added API documentation for KCL Rust Plugin Development.
398400
- Add FAQ document about the `mixin` and `protocol`.
399401
- Fixed some document errors.

i18n/zh-CN/docusaurus-plugin-content-blog/2024-09-18-kcl-0.10.0-release/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ KCL 团队很高兴地宣布 **KCL v0.10.0 新版本现在已经可用**!本
1313

1414
- _使用功能更完善和错误更少的 KCL 语言、工具链和 IDE 提升代码编写体验和效率_
1515
- _更加全面丰富的标准库、三方库以及社区生态集成,涵盖不同应用场景和需求_
16-
- _Wasm SDK 支持无缝的浏览器运行与全新的 KCL Playground_
16+
- _WASM SDK 支持无缝的浏览器运行与全新的 KCL Playground_
1717

1818
[KCL](https://github.com/kcl-lang) 是一个 CNCF 基金会托管的基于约束的记录及函数语言,期望通过成熟的编程语言技术和实践来改进对大量繁杂配置比如云原生 Kubernetes 配置场景的编写,致力于构建围绕配置的更好的模块化、扩展性和稳定性,更简单的逻辑编写,以及更简单的自动化和生态工具集成。
1919

@@ -203,7 +203,7 @@ kcl mod add <package_name> --git <git_url> --commit <commit_id>
203203
kcl mod add cc --git https://github.com/kcl-lang/flask-demo-kcl-manifests.git --commit 8308200
204204
```
205205

206-
- 基于 wasm 后端的 kcl-playground <https://play.kcl-lang.io/> 上线。
206+
- 基于 WASM 后端的 kcl-playground <https://play.kcl-lang.io/> 上线。
207207

208208
[kclplayground](/img/blog/2024-09-18-kcl-0.10.0-release/kclplayground.png)
209209

@@ -374,11 +374,11 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
374374
- 新增了 Go, Java, Python, Rust, .NET, C/C++ 等多语言 API Spec,相关文档,测试用例和使用案例。
375375
- 代码结构调整,go 相关代码移动的 go 文件目录中。
376376
- 新增 KCL Kotlin 和 Swift 语言初版 SDK,尚未正式发布依赖包,欢迎参与贡献
377-
- 新增 KCL wasm lib 支持 node.js 和 浏览器集成。
377+
- 新增 KCL WASM lib 支持 node.js 和 浏览器集成。
378378
- 重构优化了 KCL python/Go/Java 的部分代码。
379-
- KCL wasm SDK 修复了 '\0' 转义符号导致的问题。
379+
- KCL WASM SDK 修复了 '\0' 转义符号导致的问题。
380380
- KCL lib 支持跨平台编译。
381-
- KCL wasm SDK 增加部分测试用例。
381+
- KCL WASM SDK 增加部分测试用例。
382382

383383
#### 多语言插件更新
384384

@@ -387,7 +387,7 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
387387

388388
### 📖 文档更新
389389

390-
- 新增 Python, Java, Node.js, Rust, Wasm, .NET, C/C++ 等多语言 API 文档。
390+
- 新增 Python, Java, Node.js, Rust, WASM, .NET, C/C++ 等多语言 API 文档。
391391
- 更新了 IDE Quick Start 文档。
392392
- 新增博客 A Comparative Overview of Jsonnet and KCL
393393
- 更新文档 Adapt From Kubernetes中的 crd 资源。
@@ -397,7 +397,7 @@ assert datetime.validate("2024-08-26", "%Y-%m-%d")
397397
- 新增了文档中关于 kcl.mod include 和 exclude 字段的描述。
398398
- 新增了关于 docker-credential-desktop not found 的解决方案。
399399
- 新增了 konfig 库部分资源的参考文档。
400-
- 新增了关于 KCL wasm 相关的 API 文档。
400+
- 新增了关于 KCL WASM 相关的 API 文档。
401401
- 新增了关于 Rust 开发 KCL 插件相关的 API。
402402
- 新增了关于 mixin 和 protocol 相关的 FAQ 文档。
403403
- 修复了部分文档错误。

0 commit comments

Comments
 (0)