From 66f5f66daa683e8a59a762faa46bd15c1c05a178 Mon Sep 17 00:00:00 2001 From: Wendell <41480456+WendellXY@users.noreply.github.com> Date: Fri, 16 Aug 2024 20:27:16 +0800 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6df6889..0ddca58 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,13 @@ Here's a comprehensive example showcasing various features: ```swift @Codable struct User { + @Codable + struct Car { + let brand: String + let model: String + let year: Int + } + @CodableKey("uid") let id: UUID @@ -116,7 +123,7 @@ In this example: ## Installation ```swift -.package(url: "https://github.com/WendellXY/CodableKit.git", from: "0.0.1"), +.package(url: "https://github.com/WendellXY/CodableKit.git", from: "0.4.0"), ``` ## Contributions