Publish to Cocoapods

This commit is contained in:
Nora Trapp 2020-10-15 15:47:03 -07:00
parent b50b425c53
commit 27b7755998
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ iOS Usage
Add the following line to your Podfile:
```ruby
pod 'Argon2', git: 'https://github.com/signalapp/Argon2.git', submodules: true
pod 'SignalArgon2'
```
```swift

View File

@ -7,8 +7,8 @@
#
Pod::Spec.new do |s|
s.name = "Argon2"
s.version = "1.3.0"
s.name = "SignalArgon2"
s.version = "1.3.1"
s.summary = "A Swift wrapper around the reference Argon2 implementation."
s.description = <<-DESC

View File

@ -1,6 +1,6 @@
import Foundation
import XCTest
import Argon2
import SignalArgon2
// Test data originated in Argon2 test.c
class Argon2Tests: XCTestCase {