Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Release 2.6.0 #188

Merged
merged 4 commits into from
May 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 19 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,47 @@
# ParseLiveQuery-iOS-OSX Changelog
## ParseLiveQuery-iOS-OSX Changelog

# 2.5.0
### Master

[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.6.0...master)

### 2.6.0

[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.5.0...2.6.0)

- Added `@objc` to compile with objective-c. Thanks to [Junya Yamaguchi](https://github.com/junya100) [(#184)](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/184)
- Encode Date object with `__type: Date`. Thanks to [anafang](https://github.com/ananfang) [#186](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/186)

### 2.5.0

- Bumps Bolts-Swift to 1.4.0
- Bumps Swift version to 4.2

# 2.4.0
### 2.4.0

- Bumps Parse SDK to 1.17.0
- Bumps cocoapods to 1.4.0
- Set Swift version to 3.2

# 2.3.0
### 2.3.0

- Bumps Parse SDK to 1.16.0
- Bumps Starscream to 3.0.4
- Fixes warnings in Swift 4

# 2.2.3
### 2.2.3

- Bumps Parse SDK to 1.15.4 and Bolts to 1.9.0, thanks to [marcgovi](https://github.com/marcgovi)
- Updates logging strategy for websockets, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
- Ensures unsubscribed queries are removed from subscriptions list, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
- Do not attempt to reconnect if a connection is already in progress, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)

# 2.2.2
### 2.2.2

- Adds ability to set the clientKey on the connect message, thanks to [bryandel](https://github.com/bryandel)
- Adds ability to silence the logs, thanks to [ananfang](https://github.com/ananfang)
- Ensures that `wss` URL's are properly handled, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)

# 2.0.0
### 2.0.0

- Full carthage support, thanks to [David Starke](https://github.com/dstarke)

Expand All @@ -41,7 +52,7 @@
- Adds support for updating subscription, thanks to [Florent Vilmart](https://github.com/flovilmart)
- Fixes for object decoding

# 1.1.0
### 1.1.0

- Breaking change: Swift 3 support
- Breaking change: OSX deployment target to 10.10
Expand Down
8 changes: 4 additions & 4 deletions ParseLiveQuery.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'ParseLiveQuery'
s.version = '2.5.0'
s.version = '2.6.0'
s.license = { :type => 'BSD' }
s.summary = 'Allows for subscriptions to queries in conjunction with parse-server.'
s.homepage = 'http://parseplatform.org'
s.social_media_url = 'https://twitter.com/ParsePlatform'
s.authors = { 'Parse Community' => '[email protected]', 'Richard Ross' => '[email protected]', 'Nikita Lutsenko' => '[email protected]', 'Florent Vilmart' => '[email protected]' }

s.source = { :git => 'https://github.com/ParsePlatform/ParseLiveQuery-iOS-OSX.git', :tag => s.version.to_s }

s.requires_arc = true
Expand All @@ -18,10 +18,10 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'

s.source_files = 'Sources/ParseLiveQuery/**/*.{swift,h}'
s.module_name = 'ParseLiveQuery'

s.dependency 'Parse', '~> 1.17.0'
s.dependency 'Bolts-Swift', '~> 1.4.0'
s.dependency 'Starscream', '~> 3.0.4'
Expand Down
2 changes: 1 addition & 1 deletion Sources/ParseLiveQuery/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.5.0</string>
<string>2.6.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down