Skip to content

Commit

Permalink
Merge pull request #275 from pusher/prepare-release
Browse files Browse the repository at this point in the history
Bump to 1.6.4
  • Loading branch information
TomKemp committed Jan 20, 2020
2 parents ed79699 + 46afb93 commit f544457
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.6.4 - January 2020

* Fix SocketRocket header imports (#272)

# 1.6.3 - March 2017

* Fix `PTURLRequestOperation` memory leak (#246)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PTPusherChannel *channel = [self.client subscribeToChannelNamed:@"chat"];
Install using CocoaPods is recommended.
```ruby
pod 'libPusher', '~> 1.6.3'
pod 'libPusher', '~> 1.6.4'
```

Import Pusher into the class that wants to make use of the library.
Expand All @@ -50,7 +50,7 @@ Import Pusher into the class that wants to make use of the library.
If you want to use the ReactiveExtensions version of libPusher, add the following line to your Podfile instead.

```ruby
pod 'libPusher/ReactiveExtensions', '~> 1.6.3'
pod 'libPusher/ReactiveExtensions', '~> 1.6.4'
```

This will also load the core libPusher library and ReactiveCocoa as a dependency.
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'xcode_build/tasks/build_task'
require 'xcode_build/formatters/progress_formatter'
require 'tmpdir'

LIBRARY_VERSION = "1.6.3"
LIBRARY_VERSION = "1.6.4"
XCODEBUILD_LOG = File.join(File.dirname(__FILE__), "xcodebuild.log")
GITHUB_USER = 'lukeredpath'
GITHUB_REPO = 'libPusher'
Expand Down
6 changes: 3 additions & 3 deletions libPusher.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'libPusher'
s.version = '1.6.3'
s.version = '1.6.4'
s.license = 'MIT'
s.summary = 'An Objective-C client for the Pusher service'
s.homepage = 'https://github.com/pusher/libPusher'
s.author = 'Luke Redpath'
s.source = { git: 'https://github.com/pusher/libPusher.git', tag: 'v1.6.3' }
s.source = { git: 'https://github.com/pusher/libPusher.git', tag: 'v1.6.4' }
s.requires_arc = true
s.header_dir = 'Pusher'
s.default_subspec = 'Core'
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
subspec.source_files = 'Library/**/*.{h,m}'
subspec.private_header_files = 'Library/Private Headers/*'
subspec.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => 'kPTPusherClientLibraryVersion=@\"1.6.3\"'
'GCC_PREPROCESSOR_DEFINITIONS' => 'kPTPusherClientLibraryVersion=@\"1.6.4\"'
}
end

Expand Down

0 comments on commit f544457

Please sign in to comment.