diff --git a/Numberick-NBKCoreKit.podspec b/Numberick-NBKCoreKit.podspec index e52a539a..1e5ce2d0 100644 --- a/Numberick-NBKCoreKit.podspec +++ b/Numberick-NBKCoreKit.podspec @@ -12,7 +12,7 @@ #*=============================================================================* Pod::Spec.new do |spec| - spec.version = "0.14.0" + spec.version = "0.15.0" spec.module_name = "NBKCoreKit" spec.name = "Numberick-#{spec.module_name}" spec.summary = "A new protocol hierarchy that refines Swift's standard library." diff --git a/Numberick-NBKDoubleWidthKit.podspec b/Numberick-NBKDoubleWidthKit.podspec index 67160553..aededba8 100644 --- a/Numberick-NBKDoubleWidthKit.podspec +++ b/Numberick-NBKDoubleWidthKit.podspec @@ -12,7 +12,7 @@ #*=============================================================================* Pod::Spec.new do |spec| - spec.version = "0.14.0" + spec.version = "0.15.0" spec.module_name = "NBKDoubleWidthKit" spec.name = "Numberick-#{spec.module_name}" spec.summary = "A composable, large, fixed-width, two's complement, binary integer." diff --git a/Numberick.podspec b/Numberick.podspec index f2c2de82..b4461e61 100644 --- a/Numberick.podspec +++ b/Numberick.podspec @@ -12,7 +12,7 @@ #*=============================================================================* Pod::Spec.new do |spec| - spec.version = "0.14.0" + spec.version = "0.15.0" spec.module_name = "Numberick" spec.name = "Numberick" spec.summary = "✨ An arithmagick overhaul in Swift." diff --git a/README.md b/README.md index 388e3d5e..6b4f85b6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ | Package | Swift | iOS | Mac Catalyst | macOS | tvOS | watchOS | |:-------:|:-----:|:-----:|:------------:|:-----:|:-----:|:-------:| -| 0.14.0 | 5.7 | 14.0 | 14.0 | 11.0 | 14.0 | 7.0 | +| 0.15.0 | 5.7 | 14.0 | 14.0 | 11.0 | 14.0 | 7.0 | ## Table of Contents @@ -102,13 +102,15 @@ Int256(4) / Int(4), UInt256(4) / UInt(4) Int256(5) % Int(5), UInt256(5) % UInt(5) ``` -> **Note**: The `Digit` type is `Int` when `Self` is signed, and `UInt` otherwise. +> [!NOTE] +> The `Digit` type is `Int` when `Self` is signed, and `UInt` otherwise. ### ⭐️ Feature: Swift.StaticBigInt `StaticBigInt` is disabled by default. You enable it in `Package.swift`. -> **Note**: You can use `StaticString` until `StaticBigInt` becomes available. +> [!NOTE] +> You can use `StaticString` until `StaticBigInt` becomes available. @@ -129,7 +131,7 @@ Numberick contains several modules. Import some or all of them. Add this package to your list of package dependencies. ```swift -.package(url: "https://github.com/oscbyspro/Numberick.git", .upToNextMinor(from: "0.14.0")), +.package(url: "https://github.com/oscbyspro/Numberick.git", .upToNextMinor(from: "0.15.0")), ``` Choose target dependencies from the products in [Package.swift](Package.swift). @@ -145,9 +147,9 @@ Choose target dependencies from the products in [Package.swift](Package.swift). Choose target dependencies from the pods listed in the root directory. ```rb -pod "Numberick", "~> 0.14.0" -pod "Numberick-NBKCoreKit", "~> 0.14.0" -pod "Numberick-NBKDoubleWidthKit", "~> 0.14.0" +pod "Numberick", "~> 0.15.0" +pod "Numberick-NBKCoreKit", "~> 0.15.0" +pod "Numberick-NBKDoubleWidthKit", "~> 0.15.0" ```