Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master to develop #871

Closed
wants to merge 12 commits into from
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[codespell]
count = True
ignore-words-list = ans,deriver,inout,packag
skip = *.js,*WordLists.swift,.git,Carthage,.build,build
skip = *.js,*WordLists.swift,.git,Carthage,.build,build,Sources/secp256k1
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ let package = Package(
.library(name: "web3swift", targets: ["web3swift"])
],
dependencies: [
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.5.1")
.package(url: "https://github.com/attaswift/BigInt.git", .upToNextMinor(from: "5.3.0")),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.5.1"))
],
targets: [
.target(name: "secp256k1"),
Expand Down
2 changes: 1 addition & 1 deletion Web3Core.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
spec.compiler_flags = '-DCOCOAPODS'

spec.name = 'Web3Core'
spec.version = '3.1.1'
spec.version = '3.2.0'
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' }
Expand Down
2 changes: 1 addition & 1 deletion web3swift.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WEB3CORE_VERSION ||= '3.1.1'
WEB3CORE_VERSION ||= '3.2.0'

Pod::Spec.new do |spec|
spec.name = 'web3swift'
Expand Down
Loading