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

File tree

15 files changed

+71
-57
lines changed

15 files changed

+71
-57
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.6.3
1+
ruby-2.6

.travis.yml

Lines changed: 13 additions & 12 deletions
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

Lines changed: 11 additions & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 4 additions & 4 deletions
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

0 commit comments

Comments
 (0)