Skip to content

Commit

Permalink
Bump to 1.0.3 and refactor module name to SwiftyZeroMQ since ZeroMQ i…
Browse files Browse the repository at this point in the history
…s taken in CocoaPods
  • Loading branch information
azawawi committed Oct 19, 2016
1 parent fd9319e commit 4253892
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ More examples can be found in the
- Add the following lines to your `Podfile`:
```ruby
use_frameworks!
pod 'ZeroMQ', '~> 1.0.2'
pod 'ZeroMQ', '~> 1.0.3'
```

- Run the following command in the project root directory:
Expand Down
16 changes: 8 additions & 8 deletions ZeroMQ.podspec → SwiftyZeroMQ.podspec
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@

Pod::Spec.new do |s|

s.name = "ZeroMQ"
s.version = "1.0.2"
s.name = "SwiftyZeroMQ"
s.version = "1.0.3"
s.summary = "ZeroMQ Swift Bindings for iOS."
s.description = <<-DESC
This project provides iOS Swift bindings for the ZeroMQ
C library.
DESC
s.homepage = "https://github.com/azawawi/ZeroMQ"
s.homepage = "https://github.com/azawawi/SwiftyZeroMQ"
s.license = "MIT"
s.author = { "Ahmad M. Zawawi" => "[email protected]" }

s.source = {
:git => "https://github.com/azawawi/ZeroMQ.git",
:git => "https://github.com/azawawi/SwiftyZeroMQ.git",
:tag => "#{s.version}"
}

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

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

s.subspec "CZeroMQ" do |ss|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
043B007E1DB764A600936F47 /* ZeroMQ.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043B007C1DB764A600936F47 /* ZeroMQ.swift */; };
043B007F1DB764A600936F47 /* ZeroMQError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043B007D1DB764A600936F47 /* ZeroMQError.swift */; };
043B00831DB7679900936F47 /* Guide.md in Sources */ = {isa = PBXBuildFile; fileRef = 043B00821DB7679900936F47 /* Guide.md */; };
043B00B41DB7720700936F47 /* ZeroMQ.podspec in Resources */ = {isa = PBXBuildFile; fileRef = 043B00B31DB7720700936F47 /* ZeroMQ.podspec */; };
043B00B91DB7937200936F47 /* libzmq.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 043B00B61DB7937200936F47 /* libzmq.a */; };
043B00BA1DB7937200936F47 /* zmq.h in Headers */ = {isa = PBXBuildFile; fileRef = 043B00B81DB7937200936F47 /* zmq.h */; };
047B52551DB7ADF500F2F202 /* SwiftyZeroMQ.podspec in Resources */ = {isa = PBXBuildFile; fileRef = 047B52541DB7ADF500F2F202 /* SwiftyZeroMQ.podspec */; };
04BD1F761DB64E7500E285A4 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 04BD1F741DB64E7500E285A4 /* LICENSE */; };
04BD1F771DB64E7500E285A4 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 04BD1F751DB64E7500E285A4 /* README.md */; };
04D84E3D1DB637E800AD9652 /* ZeroMQ.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D84E331DB637E800AD9652 /* ZeroMQ.framework */; };
04D84E3D1DB637E800AD9652 /* SwiftyZeroMQ.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D84E331DB637E800AD9652 /* SwiftyZeroMQ.framework */; };
04D84E421DB637E800AD9652 /* ZeroMQTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D84E411DB637E800AD9652 /* ZeroMQTests.swift */; };
04D84E441DB637E800AD9652 /* ZeroMQ.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D84E361DB637E800AD9652 /* ZeroMQ.h */; settings = {ATTRIBUTES = (Public, ); }; };
04D84E571DB63BF500AD9652 /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D84E4D1DB63BF500AD9652 /* Context.swift */; };
Expand All @@ -40,16 +40,16 @@
043B007C1DB764A600936F47 /* ZeroMQ.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZeroMQ.swift; sourceTree = "<group>"; };
043B007D1DB764A600936F47 /* ZeroMQError.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZeroMQError.swift; sourceTree = "<group>"; };
043B00821DB7679900936F47 /* Guide.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = Guide.md; sourceTree = "<group>"; };
043B00B31DB7720700936F47 /* ZeroMQ.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ZeroMQ.podspec; sourceTree = "<group>"; };
043B00B61DB7937200936F47 /* libzmq.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libzmq.a; path = CZeroMQ/libzmq.a; sourceTree = "<group>"; };
043B00B71DB7937200936F47 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = CZeroMQ/module.modulemap; sourceTree = "<group>"; };
043B00B81DB7937200936F47 /* zmq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zmq.h; path = CZeroMQ/zmq.h; sourceTree = "<group>"; };
047B52541DB7ADF500F2F202 /* SwiftyZeroMQ.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SwiftyZeroMQ.podspec; sourceTree = "<group>"; };
04BD1F741DB64E7500E285A4 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
04BD1F751DB64E7500E285A4 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
04D84E331DB637E800AD9652 /* ZeroMQ.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ZeroMQ.framework; sourceTree = BUILT_PRODUCTS_DIR; };
04D84E331DB637E800AD9652 /* SwiftyZeroMQ.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyZeroMQ.framework; sourceTree = BUILT_PRODUCTS_DIR; };
04D84E361DB637E800AD9652 /* ZeroMQ.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ZeroMQ.h; sourceTree = "<group>"; };
04D84E371DB637E800AD9652 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
04D84E3C1DB637E800AD9652 /* ZeroMQTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ZeroMQTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
04D84E3C1DB637E800AD9652 /* SwiftyZeroMQTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftyZeroMQTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
04D84E411DB637E800AD9652 /* ZeroMQTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ZeroMQTests.swift; sourceTree = "<group>"; };
04D84E431DB637E800AD9652 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
04D84E4D1DB63BF500AD9652 /* Context.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Context.swift; sourceTree = "<group>"; };
Expand All @@ -74,7 +74,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
04D84E3D1DB637E800AD9652 /* ZeroMQ.framework in Frameworks */,
04D84E3D1DB637E800AD9652 /* SwiftyZeroMQ.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -95,27 +95,27 @@
isa = PBXGroup;
children = (
043B00B51DB7935A00936F47 /* CZeroMQ */,
04D84E351DB637E800AD9652 /* ZeroMQ */,
04D84E401DB637E800AD9652 /* ZeroMQTests */,
04D84E351DB637E800AD9652 /* SwiftyZeroMQ */,
04D84E401DB637E800AD9652 /* SwiftyZeroMQTests */,
04D84E341DB637E800AD9652 /* Products */,
04D84E601DB63C0D00AD9652 /* Frameworks */,
04BD1F751DB64E7500E285A4 /* README.md */,
043B00821DB7679900936F47 /* Guide.md */,
04BD1F741DB64E7500E285A4 /* LICENSE */,
043B00B31DB7720700936F47 /* ZeroMQ.podspec */,
047B52541DB7ADF500F2F202 /* SwiftyZeroMQ.podspec */,
);
sourceTree = "<group>";
};
04D84E341DB637E800AD9652 /* Products */ = {
isa = PBXGroup;
children = (
04D84E331DB637E800AD9652 /* ZeroMQ.framework */,
04D84E3C1DB637E800AD9652 /* ZeroMQTests.xctest */,
04D84E331DB637E800AD9652 /* SwiftyZeroMQ.framework */,
04D84E3C1DB637E800AD9652 /* SwiftyZeroMQTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
04D84E351DB637E800AD9652 /* ZeroMQ */ = {
04D84E351DB637E800AD9652 /* SwiftyZeroMQ */ = {
isa = PBXGroup;
children = (
043B007C1DB764A600936F47 /* ZeroMQ.swift */,
Expand All @@ -128,15 +128,17 @@
04D84E361DB637E800AD9652 /* ZeroMQ.h */,
04D84E371DB637E800AD9652 /* Info.plist */,
);
name = SwiftyZeroMQ;
path = ZeroMQ;
sourceTree = "<group>";
};
04D84E401DB637E800AD9652 /* ZeroMQTests */ = {
04D84E401DB637E800AD9652 /* SwiftyZeroMQTests */ = {
isa = PBXGroup;
children = (
04D84E411DB637E800AD9652 /* ZeroMQTests.swift */,
04D84E431DB637E800AD9652 /* Info.plist */,
);
name = SwiftyZeroMQTests;
path = ZeroMQTests;
sourceTree = "<group>";
};
Expand All @@ -163,9 +165,9 @@
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
04D84E321DB637E800AD9652 /* ZeroMQ */ = {
04D84E321DB637E800AD9652 /* SwiftyZeroMQ */ = {
isa = PBXNativeTarget;
buildConfigurationList = 04D84E471DB637E800AD9652 /* Build configuration list for PBXNativeTarget "ZeroMQ" */;
buildConfigurationList = 04D84E471DB637E800AD9652 /* Build configuration list for PBXNativeTarget "SwiftyZeroMQ" */;
buildPhases = (
04D84E2E1DB637E800AD9652 /* Sources */,
04D84E2F1DB637E800AD9652 /* Frameworks */,
Expand All @@ -176,14 +178,14 @@
);
dependencies = (
);
name = ZeroMQ;
name = SwiftyZeroMQ;
productName = ZeroMQ;
productReference = 04D84E331DB637E800AD9652 /* ZeroMQ.framework */;
productReference = 04D84E331DB637E800AD9652 /* SwiftyZeroMQ.framework */;
productType = "com.apple.product-type.framework";
};
04D84E3B1DB637E800AD9652 /* ZeroMQTests */ = {
04D84E3B1DB637E800AD9652 /* SwiftyZeroMQTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 04D84E4A1DB637E800AD9652 /* Build configuration list for PBXNativeTarget "ZeroMQTests" */;
buildConfigurationList = 04D84E4A1DB637E800AD9652 /* Build configuration list for PBXNativeTarget "SwiftyZeroMQTests" */;
buildPhases = (
04D84E381DB637E800AD9652 /* Sources */,
04D84E391DB637E800AD9652 /* Frameworks */,
Expand All @@ -194,9 +196,9 @@
dependencies = (
04D84E3F1DB637E800AD9652 /* PBXTargetDependency */,
);
name = ZeroMQTests;
name = SwiftyZeroMQTests;
productName = ZeroMQTests;
productReference = 04D84E3C1DB637E800AD9652 /* ZeroMQTests.xctest */;
productReference = 04D84E3C1DB637E800AD9652 /* SwiftyZeroMQTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
Expand All @@ -220,7 +222,7 @@
};
};
};
buildConfigurationList = 04D84E2D1DB637E800AD9652 /* Build configuration list for PBXProject "ZeroMQ" */;
buildConfigurationList = 04D84E2D1DB637E800AD9652 /* Build configuration list for PBXProject "SwiftyZeroMQ" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
Expand All @@ -232,8 +234,8 @@
projectDirPath = "";
projectRoot = "";
targets = (
04D84E321DB637E800AD9652 /* ZeroMQ */,
04D84E3B1DB637E800AD9652 /* ZeroMQTests */,
04D84E321DB637E800AD9652 /* SwiftyZeroMQ */,
04D84E3B1DB637E800AD9652 /* SwiftyZeroMQTests */,
);
};
/* End PBXProject section */
Expand All @@ -243,7 +245,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
043B00B41DB7720700936F47 /* ZeroMQ.podspec in Resources */,
047B52551DB7ADF500F2F202 /* SwiftyZeroMQ.podspec in Resources */,
04BD1F761DB64E7500E285A4 /* LICENSE in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -287,7 +289,7 @@
/* Begin PBXTargetDependency section */
04D84E3F1DB637E800AD9652 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 04D84E321DB637E800AD9652 /* ZeroMQ */;
target = 04D84E321DB637E800AD9652 /* SwiftyZeroMQ */;
targetProxy = 04D84E3E1DB637E800AD9652 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
Expand Down Expand Up @@ -470,7 +472,7 @@
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
04D84E2D1DB637E800AD9652 /* Build configuration list for PBXProject "ZeroMQ" */ = {
04D84E2D1DB637E800AD9652 /* Build configuration list for PBXProject "SwiftyZeroMQ" */ = {
isa = XCConfigurationList;
buildConfigurations = (
04D84E451DB637E800AD9652 /* Debug */,
Expand All @@ -479,7 +481,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
04D84E471DB637E800AD9652 /* Build configuration list for PBXNativeTarget "ZeroMQ" */ = {
04D84E471DB637E800AD9652 /* Build configuration list for PBXNativeTarget "SwiftyZeroMQ" */ = {
isa = XCConfigurationList;
buildConfigurations = (
04D84E481DB637E800AD9652 /* Debug */,
Expand All @@ -488,7 +490,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
04D84E4A1DB637E800AD9652 /* Build configuration list for PBXNativeTarget "ZeroMQTests" */ = {
04D84E4A1DB637E800AD9652 /* Build configuration list for PBXNativeTarget "SwiftyZeroMQTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
04D84E4B1DB637E800AD9652 /* Debug */,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2</string>
<string>1.0.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit 4253892

Please sign in to comment.