diff --git a/FayeCpp.podspec b/FayeCpp.podspec index ae4f720..eb923c6 100644 --- a/FayeCpp.podspec +++ b/FayeCpp.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| # Common settings s.name = "FayeCpp" - s.version = "0.1.11" + s.version = "0.1.12" s.summary = "Faye C++ client with Objective-C client wrapper." s.description = <<-DESC Faye C++ client with Objective-C client wrapper. @@ -15,7 +15,8 @@ You can use Objective-C wrapper or C++ client directly. s.source = { :git => 'https://github.com/OlehKulykov/FayeCpp.git', :tag => s.version.to_s, :submodules => "true" } # Platforms - s.platform = :ios, "5.0" + s.ios.deployment_target = "5.0" + s.osx.deployment_target = "10.7" # Build s.public_header_files = 'fayecpp.h', 'contrib/objc/FayeCppClient.h' diff --git a/README.md b/README.md index fd7a227..2c6028c 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ git submodule update --init --recursive ### Installation with CocoaPods #### Podfile ```ruby -pod 'FayeCpp', '~> 0.1.11' +pod 'FayeCpp', '~> 0.1' ``` diff --git a/fayecpp.h b/fayecpp.h index 2d9dfd5..e43565d 100644 --- a/fayecpp.h +++ b/fayecpp.h @@ -28,7 +28,11 @@ * Faye C++ client main and one header file. * All class interfaces added to namespace, preventing include files mess. * - * Changes on version 0.1.11 (current): + * Changes on version 0.1.12 (current): + * - Cocoapod now available also for OSX 10.7 and later. + * - Objective-C client minor update. + * + * Changes on version 0.1.11: * - Added variant objects compare functionality. * - Detecting UTF8 strings fix. * @@ -87,7 +91,7 @@ #define FAYECPP_VERSION_MAJOR 0 #define FAYECPP_VERSION_MINOR 1 -#define FAYECPP_VERSION_PATCH 11 +#define FAYECPP_VERSION_PATCH 12 #if !defined(HAVE_SUITABLE_QT_VERSION)