We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd24234f commit889a1ecCopy full SHA for 889a1ec
BigInt.podspec
@@ -1,7 +1,7 @@
1
2
Pod::Spec.newdo |spec|
3
spec.name='BigInt'
4
-spec.version='5.2.0'
+spec.version='5.2.1'
5
spec.ios.deployment_target="8.0"
6
spec.osx.deployment_target="10.9"
7
spec.tvos.deployment_target="9.0"
CHANGELOG.md
@@ -1,3 +1,9 @@
+#5.2.1 (2020-11-15)
+
+This release contains the following changes:
+- Added a temporary fix for[SR-13491](https://bugs.swift.org/browse/SR-13491)
#5.2.0 (2020-08-24)
8
9
This release contains the following changes:
README.md
@@ -105,7 +105,7 @@ The last version with support for Swift 2 was BigInt 1.3.0.)
105
| 3.x| 2.1.0|
106
| 4.0| 3.1.0|
107
| 4.2| 4.0.0|
108
-| 5.0| 5.2.0|
+| 5.x| 5.2.1|
109
110
BigInt deploys to macOS 10.10, iOS 9, watchOS 2 and tvOS 9.
111
It has been tested on the latest OS releases only---however, as the module uses very few platform-provided APIs,
@@ -121,13 +121,13 @@ Setup instructions:
121
Add this to the dependency section of your`Package.swift` manifest:
122
123
```Swift
124
- .package(url:"https://github.com/attaswift/BigInt.git",from:"5.2.0")
+ .package(url:"https://github.com/attaswift/BigInt.git",from:"5.2.1")
125
```
126
127
-**CocoaPods:** Put thisin your `Podfile`:
128
129
```Ruby
130
- pod 'BigInt', '~>5.0'
+ pod 'BigInt', '~>5.2'
131
132
133
-**Carthage:** Put thisin your `Cartfile`:
version.xcconfig
@@ -1,6 +1,6 @@
// Increment the build number whenever you modify the version string.
-VERSION_STRING = 5.2.0
-BUILD_NUMBER =16
+VERSION_STRING = 5.2.1
+BUILD_NUMBER =17
PROJECT_NAME = BigInt
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)