Skip to content

Commit

Permalink
Bump version to v0.7.1
Browse files Browse the repository at this point in the history
CocoaPods (rightfully) requires a new version for a change.
Update Carthage instructions to show 0.7 compatibility syntax.

Issue #63

[#120088719]
  • Loading branch information
camelpunch committed Jun 6, 2016
1 parent 6f70a56 commit b488979
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 14 deletions.
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -32,11 +32,9 @@ Test-driven from Swift and implemented in Objective-C, to avoid burdening Object
1. Create a Cartfile with the following line:

```
github "rabbitmq/rabbitmq-objc-client" "v0.7"
github "rabbitmq/rabbitmq-objc-client" ~> 0.7
```

Replace `"v0.7"` with the release, commit or branch of your choice.

Run carthage, for example in a new project:

```
Expand Down
2 changes: 1 addition & 1 deletion RMQClient.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RMQClient"
s.version = "0.7"
s.version = "0.7.1"
s.summary = "RabbitMQ client"
s.description = <<-DESC
RabbitMQ client for iOS Objective-C and Swift. Developed and supported by the
Expand Down
8 changes: 4 additions & 4 deletions RMQClient.xcodeproj/project.pbxproj
Expand Up @@ -1253,7 +1253,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -1300,7 +1300,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand All @@ -1327,7 +1327,7 @@
buildSettings = {
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 4;
DYLIB_CURRENT_VERSION = 5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -1348,7 +1348,7 @@
buildSettings = {
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 4;
DYLIB_CURRENT_VERSION = 5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
4 changes: 2 additions & 2 deletions RMQClient/Info.plist
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.7</string>
<string>0.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions RMQClientIntegrationTests/Info.plist
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.7</string>
<string>0.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions RMQClientTests/Info.plist
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.7</string>
<string>0.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
</dict>
</plist>

0 comments on commit b488979

Please sign in to comment.