Skip to content

Commit 8dbb085

Browse files
authored
Prepare for 1.8.5 release (#178)
* Prepare for 1.8.5 release * put codecov patch back to auto * Turn SwiftLint warnings into errors
1 parent 94c7474 commit 8dbb085

File tree

4 files changed

+44
-5
lines changed

4 files changed

+44
-5
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ coverage:
44
status:
55
patch:
66
default:
7-
target: 45
7+
target: auto
88
changes: false
99
project:
1010
default:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Parse-Swift Changelog
22

33
### main
4-
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.8.4...main)
4+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.8.5...main)
55
* _Contributing to this repo? Add info about your change here to be included in the next release_
66

7+
### 1.8.5
8+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.8.4...1.8.5)
9+
710
__Fixes__
811
- Fixed a bug in LiveQuery when a close frame is sent from the server that resulted in closing
912
all running websocket tasks instead of the particular task the request was intended for. The fix

ParseSwift.xcodeproj/project.pbxproj

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,6 +1432,7 @@
14321432
912C9BC724D3005D009947C3 /* Sources */,
14331433
912C9BC824D3005D009947C3 /* Frameworks */,
14341434
912C9BC924D3005D009947C3 /* Resources */,
1435+
918CED62268A23E600CFDC83 /* ShellScript */,
14351436
);
14361437
buildRules = (
14371438
);
@@ -1450,6 +1451,7 @@
14501451
912C9BD424D3011F009947C3 /* Sources */,
14511452
912C9BD524D3011F009947C3 /* Frameworks */,
14521453
912C9BD624D3011F009947C3 /* Resources */,
1454+
918CED61268A23A700CFDC83 /* ShellScript */,
14531455
);
14541456
buildRules = (
14551457
);
@@ -1623,7 +1625,7 @@
16231625
);
16241626
runOnlyForDeploymentPostprocessing = 0;
16251627
shellPath = /bin/sh;
1626-
shellScript = "if which swiftlint >/dev/null; then\nswiftlint\nelse\necho \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
1628+
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --strict\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
16271629
};
16281630
4A6511551F49D544005237DF /* SwiftLint */ = {
16291631
isa = PBXShellScriptBuildPhase;
@@ -1637,7 +1639,41 @@
16371639
);
16381640
runOnlyForDeploymentPostprocessing = 0;
16391641
shellPath = /bin/sh;
1640-
shellScript = "if which swiftlint >/dev/null; then\n swiftlint autocorrect && swiftlint\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
1642+
shellScript = "if which swiftlint >/dev/null; then\n swiftlint autocorrect && swiftlint --strict\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
1643+
};
1644+
918CED61268A23A700CFDC83 /* ShellScript */ = {
1645+
isa = PBXShellScriptBuildPhase;
1646+
buildActionMask = 2147483647;
1647+
files = (
1648+
);
1649+
inputFileListPaths = (
1650+
);
1651+
inputPaths = (
1652+
);
1653+
outputFileListPaths = (
1654+
);
1655+
outputPaths = (
1656+
);
1657+
runOnlyForDeploymentPostprocessing = 0;
1658+
shellPath = /bin/sh;
1659+
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --strict\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
1660+
};
1661+
918CED62268A23E600CFDC83 /* ShellScript */ = {
1662+
isa = PBXShellScriptBuildPhase;
1663+
buildActionMask = 2147483647;
1664+
files = (
1665+
);
1666+
inputFileListPaths = (
1667+
);
1668+
inputPaths = (
1669+
);
1670+
outputFileListPaths = (
1671+
);
1672+
outputPaths = (
1673+
);
1674+
runOnlyForDeploymentPostprocessing = 0;
1675+
shellPath = /bin/sh;
1676+
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --strict\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
16411677
};
16421678
/* End PBXShellScriptBuildPhase section */
16431679

Sources/ParseSwift/ParseConstants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
enum ParseConstants {
1212
static let sdk = "swift"
13-
static let version = "1.8.4"
13+
static let version = "1.8.5"
1414
static let hashingKey = "parseSwift"
1515
static let fileManagementDirectory = "parse/"
1616
static let fileManagementPrivateDocumentsDirectory = "Private Documents/"

0 commit comments

Comments
 (0)