Skip to content

Commit 9f359d3

Browse files
Update podspec
1 parent d7290d4 commit 9f359d3

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Maven Central option coming soon.
2727

2828
We currenlty support only CocoaPods. Add this line to your Podfile and run `pod install`:
2929
```ruby
30-
pod 'TrustWalletCore', git: 'git@github.com:TrustWallet/wallet-core.git', branch: 'master', submodules: true
30+
pod 'TrustWalletCore'
3131
```
3232

3333
# Contributing

TrustWalletCore.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
version = '0.3.2'
1+
version = '0.4.0'
22

33
Pod::Spec.new do |s|
44
s.name = 'TrustWalletCore'
55
s.version = version
66
s.summary = 'Trust Wallet core data structures and algorithms.'
7-
s.homepage = 'https://github.com/TrustWallet/trust-wallet-core'
7+
s.homepage = 'https://github.com/TrustWallet/wallet-core'
88
s.license = 'MIT'
99
s.authors = { 'Alejandro Isaza' => 'al@isaza.ca' }
1010

@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.swift_version = '4.2'
1414

1515
s.source = {
16-
git: 'git@github.com:TrustWallet/trust-wallet-core.git',
16+
git: 'git@github.com:TrustWallet/wallet-core.git',
1717
tag: version,
1818
submodules: true
1919
}

tools/ios-release

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Pod::Spec.new do |s|
4040
s.name = 'TrustWalletCore'
4141
s.version = '#{version}'
4242
s.summary = 'Trust Wallet core data structures and algorithms.'
43-
s.homepage = 'https://github.com/TrustWallet/trust-wallet-core'
43+
s.homepage = 'https://github.com/TrustWallet/wallet-core'
4444
s.license = 'MIT'
4545
s.authors = { 'Alejandro Isaza' => 'al@isaza.ca' }
4646
@@ -76,13 +76,13 @@ PODSPEC
7676
file = File.new('build/TrustWalletCore.podspec', 'w')
7777
file.write(podspec)
7878
file.close
79-
stdout, stderr, status = Open3.capture3('pod', 'repo', 'push', 'Trust',
79+
stdout, stderr, status = Open3.capture3('pod', 'trunk', 'push',
8080
'--skip-tests',
8181
'--skip-import-validation',
8282
'--allow-warnings',
8383
file.path)
84+
puts stdout
8485
if status != 0
85-
puts stdout
8686
STDERR.puts stderr
8787
exit 1
8888
end

0 commit comments

Comments
 (0)