Skip to content

Commit

Permalink
prepare for release 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Dec 10, 2024
1 parent 32bf162 commit e7e8583
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Soneso open source stellar SDK for iOS & Mac provides APIs to build tran
#### Latest stable release:

```swift
.package(name: "stellarsdk", url: "[email protected]:Soneso/stellar-ios-mac-sdk.git", from: "3.0.2"),
.package(name: "stellarsdk", url: "[email protected]:Soneso/stellar-ios-mac-sdk.git", from: "3.0.3"),
```

If not loading (err: `cannot use bare repository`), then remove:
Expand Down Expand Up @@ -38,7 +38,7 @@ To integrate stellar SDK into your Xcode project using CocoaPods, specify it in
use_frameworks!

target '<Your Target Name>' do
pod 'stellar-ios-mac-sdk', '~> 3.0.2'
pod 'stellar-ios-mac-sdk', '~> 3.0.3'
end
```

Expand All @@ -65,7 +65,7 @@ To integrate stellar-ios-mac-sdk into your Xcode project using Carthage, specify
#### Last stable release:

```ogdl
github "soneso/stellar-ios-mac-sdk" ~> 3.0.2
github "soneso/stellar-ios-mac-sdk" ~> 3.0.3
```

Run `carthage update` to build the framework and drag the build `stellar-ios-mac-sdk.framework` into your Xcode project.
Expand Down
2 changes: 1 addition & 1 deletion stellar-ios-mac-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "stellar-ios-mac-sdk"
s.version = "3.0.2"
s.version = "3.0.3"
s.summary = "Fully featured iOS and macOS SDK that provides APIs to build transactions and connect to Horizon server for the Stellar ecosystem."
s.module_name = 'stellarsdk'
s.swift_version = '5.0'
Expand Down
2 changes: 1 addition & 1 deletion stellarsdk/stellarsdk/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.0.2</string>
<string>3.0.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
10 changes: 5 additions & 5 deletions stellarsdk/stellarsdkTests/soroban/SorobanAtomicSwapTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ class SorobanAtomicSwapTest: XCTestCase {
let sdk = StellarSDK.testNet() // StellarSDK.futureNet()
let network = Network.testnet // Network.futurenet
let submitterKeyPair = try! KeyPair.generateRandomKeyPair()
let aliceKeyPair = try! KeyPair(secretSeed: "SAOA7E5N4SRXM6FO5MLYJCPTDOEXV7D3JDDMOZCZRUA5KYMEHI3ZYE6D") // GCJI6TUAS5L34QBGPM5RWDTL5VEWNIYVQULHAININFCHCWN32CRIIAN2
let bobKeyPair = try! KeyPair(secretSeed: "SA3GPGCNRUMCXVP4VXJQS2JZEUN3FHV5ZQYCJAPUWPDQCIZUIQQI7KCC") // GCKPOKBBIIB2UMAE5BML6YECT4HE5ZUYJDSZ3DO3OXNRMZI4PEWYLYRY
let atomicSwapContractId = "CCG4RPI6QPJJ3W5XD2MTXEBLVJXH4JF6TPKQGYNO7ZF4TFZHSQTEHOB3"
let tokenAId = "CBOJXCA7QPMRT6NUQK7OPXJGTI4TW6VOPW7P3C3JG2RTM5SJCKS7CCLM"
let tokenBId = "CCICI5FQY2MVSSQJ4VPKVB2M2ADNUAJDNOSF2JAFEMMMZFBV526GRN2Y"
let aliceKeyPair = try! KeyPair(secretSeed: "SDF6FPXENBM5FFW6JPC7BMLOQTXXLEPFGSCYVP7B5IJJIYZNCSRKIWW2") // GDDLK4NSOQMR6JXCACX2PRLJBKUIZ4JGA5EDSMX6NFMC5FCTSKP3D44G
let bobKeyPair = try! KeyPair(secretSeed: "SDML2DN5CKQO5SEQ2LKRKZHG4AQVWB5WXFGEPJMAQ7S5XZ5Q7OVKJZ3Z") // GCZRF6P4EPFKFY265LGWRO5IO5G2UGMBK7G5QMZCMRSXB4MTVTWZTP6X
let atomicSwapContractId = "CAOUSMS3ABTK3XJ3DVBB4PNCDGWHSVGHS7AJD365FYNJBLNPCQ6Z5RQI"
let tokenAId = "CCAZYBBVS2QTH3APAVR7HTKQUOZBZGFCSVQKLAGC3JJ4Z4ZHG66X4EFE"
let tokenBId = "CA2B6MIEWVZQZGOBLY6POMT7RGQK3GVJ3XBDNDKCYUYNCN65T6KWGWJE"
let swapFunctionName = "swap"
var invokeTransactionId:String?
var submitterAccount:Account?
Expand Down

0 comments on commit e7e8583

Please sign in to comment.