Bump version to 2.3.2

This commit is contained in:
Mattt 2021-01-14 10:39:32 -08:00
parent bc1c619487
commit 6e4a47e63d
No known key found for this signature in database
GPG Key ID: 093FD413518D2FC0
2 changed files with 16 additions and 8 deletions

View File

@ -50,7 +50,7 @@ To use [Swift Package Manager](https://swift.org/package-manager/) add Surge to
let package = Package( let package = Package(
name: "myproject", name: "myproject",
dependencies: [ dependencies: [
.package(url: "https://github.com/Jounce/Surge.git", .upToNextMajor(from: "2.3.1")), .package(url: "https://github.com/Jounce/Surge.git", .upToNextMajor(from: "2.3.2")),
], ],
targets: [ targets: [
.target( .target(
@ -72,7 +72,7 @@ platform :ios, '10.0'
use_frameworks! use_frameworks!
target '<Your Target Name>' do target '<Your Target Name>' do
pod 'Surge', '~> 2.3.1' pod 'Surge', '~> 2.3.2'
end end
``` ```
@ -83,7 +83,7 @@ Then run `pod install`.
To use [Carthage](https://github.com/Carthage/Carthage) add Surge to your `Cartfile`: To use [Carthage](https://github.com/Carthage/Carthage) add Surge to your `Cartfile`:
```ruby ```ruby
github "Jounce/Surge" ~> 2.3.1 github "Jounce/Surge" ~> 2.3.2
``` ```
Then run `carthage update` and use the framework in `Carthage/Build/<platform>`. Then run `carthage update` and use the framework in `Carthage/Build/<platform>`.
@ -114,13 +114,21 @@ let product = Surge.elmul(a, b) // [2.0, 12.0, 30.0, 56.0]
# Inventory # Inventory
- [Installation](#installation)
- [License](#license)
- [Swift Package Manager](#swift-package-manager)
- [CocoaPods](#cocoapods)
- [Carthage](#carthage)
- [Usage](#usage)
- [Computing Sum of `[Double]`](#computing-sum-of-double)
- [Computing Product of Two `[Double]`s](#computing-product-of-two-doubles)
- [General Arithmetic Operations](#general-arithmetic-operations) - [General Arithmetic Operations](#general-arithmetic-operations)
- [Addition](#addition) - [Addition](#addition)
- [Subtraction](#subtraction) - [Subtraction](#subtraction)
- [Multiplication](#multiplication) - [Multiplication](#multiplication)
- [Element-wise multiplication](#element-wise-multiplication) - [Element-wise multiplication](#element-wise-multiplication)
- [Division](#division) - [Division)](#division)
- [Element-wise Division](#element-wise-division) - [Element-wise Division)](#element-wise-division)
- [Modulo](#modulo) - [Modulo](#modulo)
- [Remainder](#remainder) - [Remainder](#remainder)
- [Square Root](#square-root) - [Square Root](#square-root)
@ -128,14 +136,14 @@ let product = Surge.elmul(a, b) // [2.0, 12.0, 30.0, 56.0]
- [Dot Product](#dot-product) - [Dot Product](#dot-product)
- [Distance](#distance) - [Distance](#distance)
- [Squared Distance](#squared-distance) - [Squared Distance](#squared-distance)
- [Power](#power) - [Power)](#power)
- [Exponential](#exponential) - [Exponential](#exponential)
- [Trigonometric Operations](#trigonometric-operations) - [Trigonometric Operations](#trigonometric-operations)
- [Sine/Cosine/Tangent](#sinecosinetangent) - [Sine/Cosine/Tangent](#sinecosinetangent)
- [Arc Sine/Cosine/Tangent](#arc-sinecosinetangent) - [Arc Sine/Cosine/Tangent](#arc-sinecosinetangent)
- [Hyperbolic Sine/Cosine/Tangent](#hyperbolic-sinecosinetangent) - [Hyperbolic Sine/Cosine/Tangent](#hyperbolic-sinecosinetangent)
- [Inverse Hyperbolic Sine/Cosine/Tangent](#inverse-hyperbolic-sinecosinetangent) - [Inverse Hyperbolic Sine/Cosine/Tangent](#inverse-hyperbolic-sinecosinetangent)
- [Radians ↔︎ Degrees](#radians-%e2%86%94%ef%b8%8e-degrees) - [Radians ↔︎ Degrees](#radians--degrees)
- [Exponential Function](#exponential-function) - [Exponential Function](#exponential-function)
- [Logarithm](#logarithm) - [Logarithm](#logarithm)
- [Statistical Operations](#statistical-operations) - [Statistical Operations](#statistical-operations)

View File

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