Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Release 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
OlehKulykov committed Jul 2, 2015
1 parent 749eac6 commit 72177aa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 deletions FayeCpp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ git submodule update --init --recursive
### Installation with CocoaPods
#### Podfile
```ruby
pod 'FayeCpp', '~> 0.1.11'
pod 'FayeCpp', '~> 0.1'
```


Expand Down
8 changes: 6 additions & 2 deletions fayecpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 72177aa

Please sign in to comment.