Skip to content

Commit b488979

Browse files
committed
Bump version to v0.7.1
CocoaPods (rightfully) requires a new version for a change. Update Carthage instructions to show 0.7 compatibility syntax. Issue #63 [#120088719]
1 parent 6f70a56 commit b488979

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ Test-driven from Swift and implemented in Objective-C, to avoid burdening Object
3232
1. Create a Cartfile with the following line:
3333

3434
```
35-
github "rabbitmq/rabbitmq-objc-client" "v0.7"
35+
github "rabbitmq/rabbitmq-objc-client" ~> 0.7
3636
```
3737

38-
Replace `"v0.7"` with the release, commit or branch of your choice.
39-
4038
Run carthage, for example in a new project:
4139

4240
```

RMQClient.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RMQClient"
3-
s.version = "0.7"
3+
s.version = "0.7.1"
44
s.summary = "RabbitMQ client"
55
s.description = <<-DESC
66
RabbitMQ client for iOS Objective-C and Swift. Developed and supported by the

RMQClient.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@
12531253
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
12541254
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
12551255
COPY_PHASE_STRIP = NO;
1256-
CURRENT_PROJECT_VERSION = 4;
1256+
CURRENT_PROJECT_VERSION = 5;
12571257
DEBUG_INFORMATION_FORMAT = dwarf;
12581258
ENABLE_STRICT_OBJC_MSGSEND = YES;
12591259
ENABLE_TESTABILITY = YES;
@@ -1300,7 +1300,7 @@
13001300
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
13011301
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
13021302
COPY_PHASE_STRIP = NO;
1303-
CURRENT_PROJECT_VERSION = 4;
1303+
CURRENT_PROJECT_VERSION = 5;
13041304
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
13051305
ENABLE_NS_ASSERTIONS = NO;
13061306
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -1327,7 +1327,7 @@
13271327
buildSettings = {
13281328
DEFINES_MODULE = YES;
13291329
DYLIB_COMPATIBILITY_VERSION = 1;
1330-
DYLIB_CURRENT_VERSION = 4;
1330+
DYLIB_CURRENT_VERSION = 5;
13311331
DYLIB_INSTALL_NAME_BASE = "@rpath";
13321332
FRAMEWORK_SEARCH_PATHS = (
13331333
"$(inherited)",
@@ -1348,7 +1348,7 @@
13481348
buildSettings = {
13491349
DEFINES_MODULE = YES;
13501350
DYLIB_COMPATIBILITY_VERSION = 1;
1351-
DYLIB_CURRENT_VERSION = 4;
1351+
DYLIB_CURRENT_VERSION = 5;
13521352
DYLIB_INSTALL_NAME_BASE = "@rpath";
13531353
FRAMEWORK_SEARCH_PATHS = (
13541354
"$(inherited)",

RMQClient/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.7</string>
18+
<string>0.7.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>4</string>
22+
<string>5</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

RMQClientIntegrationTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.7</string>
18+
<string>0.7.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>4</string>
22+
<string>5</string>
2323
</dict>
2424
</plist>

RMQClientTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.7</string>
18+
<string>0.7.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>4</string>
22+
<string>5</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)