diff --git a/README.md b/README.md index 255f9c1..1c5f6a7 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ Main features include: - Support encoding/decoding lifecycle through `ReerCodableDelegate`, like `didDecode`, `willEncode` - Provide extensions to support using JSON String, `Dictionary`, `Array` directly as parameters for encoding/decoding - Support conversion between basic data types like `Bool`, `String`, `Double`, `Int`, `CGFloat` +- Support BitInt `Int128`, `UInt128` on macOS 15+, iOS 13+ - Support encoding/decoding of `Any` through `AnyCodable`, like `var dict = [String: AnyCodable]` - Auto-generate default instances: Use `@DefaultInstance` to automatically create a default instance of your type, @@ -73,7 +74,7 @@ let package = Package( name: "YOUR_PROJECT_NAME", targets: [], dependencies: [ - .package(url: "https://github.com/reers/ReerCodable.git", from: "1.1.6") + .package(url: "https://github.com/reers/ReerCodable.git", from: "1.1.7") ] ) @@ -89,7 +90,7 @@ let package = Package(

 Pod::Spec.new do |s|
   s.name             = 'YourPod'
-  s.dependency 'ReerCodable', '1.1.6'
+  s.dependency 'ReerCodable', '1.1.7'
   # Copy the following config to your pod
   s.pod_target_xcconfig = {
     'OTHER_SWIFT_FLAGS' => '-Xfrontend -load-plugin-executable -Xfrontend ${PODS_ROOT}/ReerCodable/Sources/Resources/ReerCodableMacros#ReerCodableMacros'
diff --git a/README_CN.md b/README_CN.md
index d05eddb..5f4f7f8 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -43,6 +43,7 @@ ReerCodable 框架提供了一系列自定义宏,用于生成动态的 Codable
 - 支持通过 `ReerCodableDelegate` 来编解码生命周期, 如 `didDecode`, `willEncode`
 - 提供扩展, 支持使用 JSON String, `Dictionary`, `Array` 直接作为参数进行编解码
 - 支持 `Bool`, `String`, `Double`, `Int`, `CGFloat` 等基本数据类型互相转换
+- 支持 BitInt `Int128`, `UInt128` (限 macOS 15+, iOS 13+)
 - 支持通过 `AnyCodable` 来实现对 `Any` 的编解码, 如 `var dict = [String: AnyCodable]`
 - 支持通过 `@DefaultInstance` 生成一个 `static let default: Model` 实例, `Model.default`
 - 支持通过 `@Copyable` 生成 `copy()` 方法, 并且支持部分属性值的 update
@@ -69,7 +70,7 @@ let package = Package(
     name: "YOUR_PROJECT_NAME",
     targets: [],
     dependencies: [
-        .package(url: "https://github.com/reers/ReerCodable.git", from: "1.1.6")
+        .package(url: "https://github.com/reers/ReerCodable.git", from: "1.1.7")
     ]
 )
 
@@ -85,7 +86,7 @@ let package = Package(

 Pod::Spec.new do |s|
   s.name             = 'YourPod'
-  s.dependency 'ReerCodable', '1.1.6'
+  s.dependency 'ReerCodable', '1.1.7'
   # 复制以下 config 到你的 pod
   s.pod_target_xcconfig = {
     'OTHER_SWIFT_FLAGS' => '-Xfrontend -load-plugin-executable -Xfrontend ${PODS_ROOT}/ReerCodable/Sources/Resources/ReerCodableMacros#ReerCodableMacros'
diff --git a/ReerCodable.podspec b/ReerCodable.podspec
index a31f0a1..30bf9bd 100644
--- a/ReerCodable.podspec
+++ b/ReerCodable.podspec
@@ -8,7 +8,7 @@
 
 Pod::Spec.new do |s|
   s.name             = 'ReerCodable'
-  s.version          = '1.1.6'
+  s.version          = '1.1.7'
   s.summary          = 'Codable extensions using Swift Macro'
 
   s.description      = <<-DESC