Skip to content

Commit 889a1ec

Browse files
committed
Bumped version
1 parent d24234f commit 889a1ec

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

BigInt.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |spec|
33
spec.name = 'BigInt'
4-
spec.version = '5.2.0'
4+
spec.version = '5.2.1'
55
spec.ios.deployment_target = "8.0"
66
spec.osx.deployment_target = "10.9"
77
spec.tvos.deployment_target = "9.0"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 5.2.1 (2020-11-15)
2+
3+
This release contains the following changes:
4+
5+
- Added a temporary fix for [SR-13491](https://bugs.swift.org/browse/SR-13491)
6+
17
# 5.2.0 (2020-08-24)
28

39
This release contains the following changes:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The last version with support for Swift 2 was BigInt 1.3.0.)
105105
| 3.x | 2.1.0 |
106106
| 4.0 | 3.1.0 |
107107
| 4.2 | 4.0.0 |
108-
| 5.0 | 5.2.0 |
108+
| 5.x | 5.2.1 |
109109

110110
BigInt deploys to macOS 10.10, iOS 9, watchOS 2 and tvOS 9.
111111
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:
121121
Add this to the dependency section of your `Package.swift` manifest:
122122

123123
```Swift
124-
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.0")
124+
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1")
125125
```
126126

127127
- **CocoaPods:** Put this in your `Podfile`:
128128

129129
```Ruby
130-
pod 'BigInt', '~> 5.0'
130+
pod 'BigInt', '~> 5.2'
131131
```
132132

133133
- **Carthage:** Put this in your `Cartfile`:

version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Increment the build number whenever you modify the version string.
2-
VERSION_STRING = 5.2.0
3-
BUILD_NUMBER = 16
2+
VERSION_STRING = 5.2.1
3+
BUILD_NUMBER = 17
44

55
PROJECT_NAME = BigInt
66
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)

0 commit comments

Comments
 (0)