Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Nov 15, 2020
1 parent d24234f commit 889a1ec
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BigInt.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |spec|
spec.name = 'BigInt'
spec.version = '5.2.0'
spec.version = '5.2.1'
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.9"
spec.tvos.deployment_target = "9.0"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

This release contains the following changes:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The last version with support for Swift 2 was BigInt 1.3.0.)
| 3.x | 2.1.0 |
| 4.0 | 3.1.0 |
| 4.2 | 4.0.0 |
| 5.0 | 5.2.0 |
| 5.x | 5.2.1 |

BigInt deploys to macOS 10.10, iOS 9, watchOS 2 and tvOS 9.
It has been tested on the latest OS releases only---however, as the module uses very few platform-provided APIs,
Expand All @@ -121,13 +121,13 @@ Setup instructions:
Add this to the dependency section of your `Package.swift` manifest:

```Swift
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.0")
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1")
```

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

```Ruby
pod 'BigInt', '~> 5.0'
pod 'BigInt', '~> 5.2'
```

- **Carthage:** Put this in your `Cartfile`:
Expand Down
4 changes: 2 additions & 2 deletions version.xcconfig
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 889a1ec

Please sign in to comment.