Skip to content

Commit

Permalink
bump version to 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Sep 6, 2021
1 parent 87f7a39 commit 98b0589
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 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.1'
spec.version = '5.3.0'
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.9"
spec.tvos.deployment_target = "9.0"
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 5.3.0 (2021-09-06)

This release contains the following changes:

- Make access level for isZero the same for signed and unsigned types (#93)

- NFC: Add protocol conformance to Comparable for BigInt for consistency (#88)

# 5.2.1 (2020-11-15)

This release contains the following changes:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,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.x | 5.2.1 |
| 5.x | 5.3.0 |

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 @@ -122,19 +122,19 @@ 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.1")
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0")
```

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

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

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

```
github "attaswift/BigInt" ~> 5.2
github "attaswift/BigInt" ~> 5.3
```

## <a name="notes">Implementation notes</a>
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.1
BUILD_NUMBER = 17
VERSION_STRING = 5.3.0
BUILD_NUMBER = 18

PROJECT_NAME = BigInt
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)
Expand Down

0 comments on commit 98b0589

Please sign in to comment.