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

Commit fa20814

Browse files
authored
Release 2.7.1 & bump dependencies (#226)
* Updating Dependencies - Updating starscream to 3.1.1 for Swift 5 compatibility - Parse 1.18.1 which includes Bolts 1.9.1 that adds catalyst compatibility and fixes App Store UIWebView deprication requirements. * Updating podspec and project versions. - Updated podspec to use specifically 3.1.0 Starscream to eliminate possibility of errors upon cocoapod build. - Updated podspec to version 2.7.1 - Updated Project to 2.7.1 * Updating Travis and Circle configs for next release. - Updated travis to 11.2 - Updated cocoapod gem to 1.8.4 - Moved publish script to travis file as it was only 1 line * Updating changelog * Updating travis file to not try and run jazzy every PR. * remove unnecessary install of bundler
1 parent 15438a8 commit fa20814

15 files changed

+71
-57
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- checkout
2222
- run: *prepare
23-
- run: xcodebuild build -workspace ParseLiveQuery.xcworkspace -sdk iphonesimulator -scheme ParseLiveQuery-iOS -configuration Debug -destination "platform=iOS Simulator,name=iPhone 6 Plus" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c;
23+
- run: xcodebuild build -workspace ParseLiveQuery.xcworkspace -sdk iphonesimulator -scheme ParseLiveQuery-iOS -configuration Debug -destination "platform=iOS Simulator,name=iPhone 11,OS=13.2.2" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c;
2424
- run: bash <(curl -s https://codecov.io/bash)
2525
- store_test_results:
2626
path: build/reports

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.6.3
1+
ruby-2.6

.travis.yml

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
1+
language: objective-c
2+
os: osx
3+
osx_image: xcode11.2
14
branches:
25
only:
36
- master
47
- /^v?[0-9]+\.[0-9]+\.[0-9]+(-.*)?$/
5-
language: objective-c
6-
os: osx
7-
osx_image: xcode11
88
cache:
99
- cocoapods
10-
install:
11-
- gem install bundler
10+
11+
install:
1212
- bundle install
1313

1414
jobs:
1515
include:
16-
- stage: distribution
16+
- stage: release
1717
env: CocoaPods
18-
script: EXPANDED_CODE_SIGN_IDENTITY="-" EXPANDED_CODE_SIGN_IDENTITY_NAME="-" bundle exec pod lib lint --allow-warnings
18+
script: bundle exec pod lib lint --allow-warnings
1919
deploy:
2020
provider: script
21-
skip_cleanup: true
22-
script: ./publish.sh
21+
cleanup: false
22+
script: bundle exec pod trunk push ParseLiveQuery.podspec --allow-warnings
2323
on:
2424
tags: true
2525
all_branches: true
26-
- stage: distribution
26+
- stage: release
2727
env: Docs
2828
script: bundle exec jazzy
2929
deploy:
3030
provider: pages
31-
skip_cleanup: true
31+
cleanup: false
3232
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
3333
local_dir: docs/
3434
on:
35-
all_branches: true
35+
tags: true
36+
all_branches: true

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@
22

33
### Master
44

5-
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.0...master)
5+
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.1...master)
6+
7+
### 2.7.1
8+
9+
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.0...2.7.1)
10+
11+
- Bump Parse SDK to v1.18.0
12+
([#226](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/226)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas)
13+
14+
- Remove Bolts-ObjC as dependency
15+
([#223](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/223)), thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
616

717
### 2.7.0
818

Cartfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "BoltsFramework/Bolts-Swift" == 1.5.0
2-
github "ParsePlatform/Parse-SDK-iOS-OSX" == 1.17.3
3-
github "daltoniam/Starscream" == 3.0.5
1+
github "BoltsFramework/Bolts-Swift" >= 1.5.0
2+
github "ParsePlatform/Parse-SDK-iOS-OSX" >= 1.18.0
3+
github "daltoniam/Starscream" == 3.1.1

Cartfile.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "BoltsFramework/Bolts-ObjC" "1.9.0"
1+
github "BoltsFramework/Bolts-ObjC" "1.9.1"
22
github "BoltsFramework/Bolts-Swift" "1.5.0"
3-
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.17.3"
4-
github "daltoniam/Starscream" "3.0.5"
5-
github "facebook/facebook-objc-sdk" "v5.11.1"
3+
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.18.0"
4+
github "daltoniam/Starscream" "3.1.1"
5+
github "facebook/facebook-objc-sdk" "v5.15.1"

Carthage/Checkouts/Starscream

Submodule Starscream updated 54 files

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
22

3-
gem 'cocoapods', '~> 1.7.5'
43
gem 'jazzy', '~> 0.11.1'
54
gem 'xcpretty'
5+
gem 'cocoapods', '~> 1.8.4'

Gemfile.lock

+26-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
CFPropertyList (3.0.1)
4+
CFPropertyList (3.0.2)
55
activesupport (4.2.11.1)
66
i18n (~> 0.7)
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10+
algoliasearch (1.27.1)
11+
httpclient (~> 2.8, >= 2.8.3)
12+
json (>= 1.5.1)
1013
atomos (0.1.3)
1114
claide (1.0.3)
12-
cocoapods (1.7.5)
15+
cocoapods (1.8.4)
1316
activesupport (>= 4.0.2, < 5)
1417
claide (>= 1.0.2, < 2.0)
15-
cocoapods-core (= 1.7.5)
18+
cocoapods-core (= 1.8.4)
1619
cocoapods-deintegrate (>= 1.0.3, < 2.0)
1720
cocoapods-downloader (>= 1.2.2, < 2.0)
1821
cocoapods-plugins (>= 1.0.0, < 2.0)
1922
cocoapods-search (>= 1.0.0, < 2.0)
2023
cocoapods-stats (>= 1.0.0, < 2.0)
21-
cocoapods-trunk (>= 1.3.1, < 2.0)
24+
cocoapods-trunk (>= 1.4.0, < 2.0)
2225
cocoapods-try (>= 1.1.0, < 2.0)
2326
colored2 (~> 3.1)
2427
escape (~> 0.0.4)
@@ -27,31 +30,34 @@ GEM
2730
molinillo (~> 0.6.6)
2831
nap (~> 1.0)
2932
ruby-macho (~> 1.4)
30-
xcodeproj (>= 1.10.0, < 2.0)
31-
cocoapods-core (1.7.5)
33+
xcodeproj (>= 1.11.1, < 2.0)
34+
cocoapods-core (1.8.4)
3235
activesupport (>= 4.0.2, < 6)
36+
algoliasearch (~> 1.0)
37+
concurrent-ruby (~> 1.1)
3338
fuzzy_match (~> 2.0.4)
3439
nap (~> 1.0)
3540
cocoapods-deintegrate (1.0.4)
36-
cocoapods-downloader (1.2.2)
41+
cocoapods-downloader (1.3.0)
3742
cocoapods-plugins (1.0.0)
3843
nap
3944
cocoapods-search (1.0.0)
4045
cocoapods-stats (1.1.0)
41-
cocoapods-trunk (1.4.0)
46+
cocoapods-trunk (1.4.1)
4247
nap (>= 0.8, < 2.0)
4348
netrc (~> 0.11)
4449
cocoapods-try (1.1.0)
4550
colored2 (3.1.2)
46-
concurrent-ruby (1.1.5)
51+
concurrent-ruby (1.1.6)
4752
escape (0.0.4)
48-
ffi (1.11.3)
53+
ffi (1.12.2)
4954
fourflusher (2.3.1)
5055
fuzzy_match (2.0.4)
5156
gh_inspector (1.1.3)
57+
httpclient (2.8.3)
5258
i18n (0.9.5)
5359
concurrent-ruby (~> 1.0)
54-
jazzy (0.11.1)
60+
jazzy (0.11.2)
5561
cocoapods (~> 1.5)
5662
mustache (~> 1.1)
5763
open4
@@ -60,26 +66,27 @@ GEM
6066
sassc (~> 2.1)
6167
sqlite3 (~> 1.3)
6268
xcinvoke (~> 0.3.0)
69+
json (2.3.0)
6370
liferaft (0.0.6)
64-
minitest (5.11.3)
71+
minitest (5.14.0)
6572
molinillo (0.6.6)
66-
mustache (1.1.0)
73+
mustache (1.1.1)
6774
nanaimo (0.2.6)
6875
nap (1.1.0)
6976
netrc (0.11.0)
7077
open4 (1.3.4)
7178
redcarpet (3.5.0)
7279
rouge (2.0.7)
7380
ruby-macho (1.4.0)
74-
sassc (2.2.0)
81+
sassc (2.3.0)
7582
ffi (~> 1.9)
76-
sqlite3 (1.4.1)
83+
sqlite3 (1.4.2)
7784
thread_safe (0.3.6)
78-
tzinfo (1.2.5)
85+
tzinfo (1.2.7)
7986
thread_safe (~> 0.1)
8087
xcinvoke (0.3.0)
8188
liferaft (~> 0.0.6)
82-
xcodeproj (1.12.0)
89+
xcodeproj (1.16.0)
8390
CFPropertyList (>= 2.3.3, < 4.0)
8491
atomos (~> 0.1.3)
8592
claide (>= 1.0.2, < 2.0)
@@ -92,9 +99,9 @@ PLATFORMS
9299
ruby
93100

94101
DEPENDENCIES
95-
cocoapods (~> 1.7.5)
102+
cocoapods (~> 1.8.4)
96103
jazzy (~> 0.11.1)
97104
xcpretty
98105

99106
BUNDLED WITH
100-
1.17.3
107+
2.1.4

ParseLiveQuery.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ParseLiveQuery'
3-
s.version = '2.7.0'
3+
s.version = '2.7.1'
44
s.license = { :type => 'BSD' }
55
s.summary = 'Allows for subscriptions to queries in conjunction with parse-server.'
66
s.homepage = 'http://parseplatform.org'
@@ -22,8 +22,8 @@ Pod::Spec.new do |s|
2222
s.source_files = 'Sources/ParseLiveQuery/**/*.{swift,h}'
2323
s.module_name = 'ParseLiveQuery'
2424

25-
s.dependency 'Parse', '~> 1.17.3'
25+
s.dependency 'Parse', '~> 1.18.0'
2626
s.dependency 'Bolts-Swift', '~> 1.5.0'
27-
s.dependency 'Starscream', '~> 3.1.0'
27+
s.dependency 'Starscream', '3.1.0'
2828

2929
end

Sources/ParseLiveQuery.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1006,14 +1006,14 @@
10061006
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10071007
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
10081008
LIBRARY_SEARCH_PATHS = "$(inherited)";
1009-
MARKETING_VERSION = 2.7.0;
1009+
MARKETING_VERSION = 2.7.1;
10101010
PRODUCT_BUNDLE_IDENTIFIER = com.parse.livequery.ios;
10111011
PRODUCT_NAME = ParseLiveQuery;
10121012
SDKROOT = iphoneos;
10131013
SKIP_INSTALL = YES;
10141014
SWIFT_INSTALL_OBJC_HEADER = YES;
10151015
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1016-
SWIFT_VERSION = 4.2;
1016+
SWIFT_VERSION = 5.0;
10171017
TARGETED_DEVICE_FAMILY = "1,2";
10181018
};
10191019
name = Debug;
@@ -1035,13 +1035,13 @@
10351035
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10361036
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
10371037
LIBRARY_SEARCH_PATHS = "$(inherited)";
1038-
MARKETING_VERSION = 2.7.0;
1038+
MARKETING_VERSION = 2.7.1;
10391039
PRODUCT_BUNDLE_IDENTIFIER = com.parse.livequery.ios;
10401040
PRODUCT_NAME = ParseLiveQuery;
10411041
SDKROOT = iphoneos;
10421042
SKIP_INSTALL = YES;
10431043
SWIFT_INSTALL_OBJC_HEADER = YES;
1044-
SWIFT_VERSION = 4.2;
1044+
SWIFT_VERSION = 5.0;
10451045
TARGETED_DEVICE_FAMILY = "1,2";
10461046
};
10471047
name = Release;

publish.sh

-4
This file was deleted.

0 commit comments

Comments
 (0)