Bump version to 2.3.1

This commit is contained in:
Mattt 2021-01-02 03:30:35 -08:00
parent 807d73e9be
commit 372ba2830c
No known key found for this signature in database
GPG Key ID: 093FD413518D2FC0
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ To use [Swift Package Manager](https://swift.org/package-manager/) add Surge to
let package = Package(
name: "myproject",
dependencies: [
.package(url: "https://github.com/Jounce/Surge.git", .upToNextMajor(from: "2.3.0")),
.package(url: "https://github.com/Jounce/Surge.git", .upToNextMajor(from: "2.3.1")),
],
targets: [
.target(
@ -72,7 +72,7 @@ platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Surge', '~> 2.3.0'
pod 'Surge', '~> 2.3.1'
end
```
@ -83,7 +83,7 @@ Then run `pod install`.
To use [Carthage](https://github.com/Carthage/Carthage) add Surge to your `Cartfile`:
```ruby
github "Jounce/Surge" ~> 2.3.0
github "Jounce/Surge" ~> 2.3.1
```
Then run `carthage update` and use the framework in `Carthage/Build/<platform>`.

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Surge'
s.version = '2.3.0'
s.version = '2.3.1'
s.license = 'MIT'
s.summary = 'Swift + Accelerate'
s.homepage = 'https://github.com/Jounce/Surge'