Skip to content

Commit 121a96b

Browse files
committed
Version 0.10.0 in framework, podspec, README.
[#128871659]
1 parent 3e6e9c3 commit 121a96b

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ 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" ~> 0.9.0
35+
github "rabbitmq/rabbitmq-objc-client" ~> 0.10.0
3636
```
3737

3838
Run carthage, for example in a new project:
@@ -53,7 +53,7 @@ this list.
5353
1. Add the following to your Podfile:
5454

5555
```
56-
pod 'RMQClient', '~> 0.9.0'
56+
pod 'RMQClient', '~> 0.10.0'
5757
```
5858
We recommend adding `use_frameworks!` to enable modular imports (Objective-C only).
5959
1. Run `pod install`.

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.9.0"
3+
s.version = "0.10.0"
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
@@ -1323,7 +1323,7 @@
13231323
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
13241324
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
13251325
COPY_PHASE_STRIP = NO;
1326-
CURRENT_PROJECT_VERSION = 7;
1326+
CURRENT_PROJECT_VERSION = 8;
13271327
DEBUG_INFORMATION_FORMAT = dwarf;
13281328
ENABLE_STRICT_OBJC_MSGSEND = YES;
13291329
ENABLE_TESTABILITY = YES;
@@ -1370,7 +1370,7 @@
13701370
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
13711371
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
13721372
COPY_PHASE_STRIP = NO;
1373-
CURRENT_PROJECT_VERSION = 7;
1373+
CURRENT_PROJECT_VERSION = 8;
13741374
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
13751375
ENABLE_NS_ASSERTIONS = NO;
13761376
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -1397,7 +1397,7 @@
13971397
buildSettings = {
13981398
DEFINES_MODULE = YES;
13991399
DYLIB_COMPATIBILITY_VERSION = 1;
1400-
DYLIB_CURRENT_VERSION = 7;
1400+
DYLIB_CURRENT_VERSION = 8;
14011401
DYLIB_INSTALL_NAME_BASE = "@rpath";
14021402
FRAMEWORK_SEARCH_PATHS = (
14031403
"$(inherited)",
@@ -1418,7 +1418,7 @@
14181418
buildSettings = {
14191419
DEFINES_MODULE = YES;
14201420
DYLIB_COMPATIBILITY_VERSION = 1;
1421-
DYLIB_CURRENT_VERSION = 7;
1421+
DYLIB_CURRENT_VERSION = 8;
14221422
DYLIB_INSTALL_NAME_BASE = "@rpath";
14231423
FRAMEWORK_SEARCH_PATHS = (
14241424
"$(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.9.0</string>
18+
<string>0.10.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>7</string>
22+
<string>8</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.9.0</string>
18+
<string>0.10.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>7</string>
22+
<string>8</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.9.0</string>
18+
<string>0.10.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>7</string>
22+
<string>8</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)