diff --git a/CHANGELOG.md b/CHANGELOG.md index 12c9916..1b3258f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 发行版本 +## [3.1.3] - 2024-01-16 +- :sparkles: 支持 Kotlin Spring boot starter。 +- :arrow_up: 升级到 Spring boot 3.2.1 + ## [3.1.2] - 2023-10-15 - :sparkles: 支持 Kotlin 元注解,github #8 感谢 `@Sunrise66` 反馈 - :arrow_up: 升级到 Spring boot 3.1.4 @@ -18,6 +22,10 @@ - :arrow_up: 升级到 Spring boot 3.0.0 - :arrow_up: 升级到 java17 +## [2.3.4] - 2024-01-16 +- :sparkles: 支持 Kotlin Spring boot starter。 +- :arrow_up: 升级到 Spring boot 2.7.18 + ## [2.3.3] - 2023-10-15 - :sparkles: 支持 Kotlin 元注解,github #8 感谢 `@Sunrise66` 反馈 - :arrow_up: 升级到 Spring boot 2.7.16 diff --git a/README.md b/README.md index 497b6bb..27a3562 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ ## 版本说明 | version | spring boot version | java version | |---------|---------------------|--------------| -| 3.1.2 | 3.x | 17 | -| 2.3.3 | 1.x ~ 3.x | 1.8 | +| 3.1.3 | 3.x | 17 | +| 2.3.4 | 1.x ~ 3.x | 1.8 | ## 原理 diff --git a/README_EN.md b/README_EN.md index 101c43d..15bc784 100644 --- a/README_EN.md +++ b/README_EN.md @@ -13,8 +13,8 @@ English | [简体中文](README.md) ## version | version | spring boot version | java version | |---------|---------------------|--------------| -| 3.1.2 | 3.x | 17 | -| 2.3.3 | 1.x ~ 3.x | 1.8 | +| 3.1.3 | 3.x | 17 | +| 2.3.4 | 1.x ~ 3.x | 1.8 | ## Principle Mica Auto uses the Annotation Processor, which is not a new technology. It's been around since JDK 1.6. The Annotation Processor is a tool of javac that scans and processes annotations at compile time. Using the Annotation Processor, you can obtain information about annotations and annotated objects, and then automatically generate Java code based on annotations, eliminating manual writing and improving coding efficiency. Lombok is also famous for this technology.