Skip to content

Commit

Permalink
Bump version to 1.0.2. Cocoapod is now working :)
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Oct 19, 2016
1 parent ae2faf1 commit 7dad699
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
27 changes: 11 additions & 16 deletions ZeroMQ.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |s|

s.name = "ZeroMQ"
s.version = "1.0.0"
s.version = "1.0.2"
s.summary = "ZeroMQ Swift Bindings for iOS."
s.description = <<-DESC
This project provides iOS Swift bindings for the ZeroMQ
Expand All @@ -12,34 +12,29 @@ Pod::Spec.new do |s|
s.license = "MIT"
s.author = { "Ahmad M. Zawawi" => "[email protected]" }

s.ios.deployment_target = "10.0"

s.source = {
:git => "https://github.com/azawawi/ZeroMQ.git",
:tag => "#{s.version}"
}
s.libraries = "stdc++"
s.xcconfig = {
# "HEADER_SEARCH_PATHS" => "${SRCROOT}/ZeroMQ",
"SWIFT_INCLUDE_PATH" => "${PROJECT_ROOT)/ZeroMQ",
"LIBRARY_SEARCH_PATHS" => "$(PROJECT_ROOT)/ZeroMQ",
"ENABLE_BITCODE" => "NO"
}

s.module_name = "ZeroMQ"
s.default_subspecs = "ZeroMQ"
s.module_name = "ZeroMQ"
s.default_subspecs = "ZeroMQ"
s.ios.deployment_target = "10.0"
s.libraries = "stdc++"

s.subspec "ZeroMQ" do |ss|
ss.source_files = "ZeroMQ/*.swift", "ZeroMQ/*.h"
ss.dependency "ZeroMQ/CZeroMQ"
ss.source_files = "ZeroMQ/*.swift"
ss.dependency "ZeroMQ/CZeroMQ"
end

s.subspec "CZeroMQ" do |ss|
ss.source_files = "CZeroMQ/*.h"
ss.vendored_libraries = "CZeroMQ/libzmq.a"
ss.preserve_paths = "CZeroMQ/*"
ss.xcconfig = {
"SWIFT_INCLUDE_PATH" => "${PROJECT_ROOT)/CZeroMQ",
"ENABLE_BITCODE" => "NO"
}
end
#s.module_map = "ZeroMQ/module.modulemap"
#s.preserve_paths = "ZeroMQ/module.modulemap", "ZeroMQ/libzmq.a", "ZeroMQ/zmq.h"

end
2 changes: 1 addition & 1 deletion ZeroMQ/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>1.0.1</string>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit 7dad699

Please sign in to comment.