Commit 7ac6158 1 parent d57b7c9 commit 7ac6158 Copy full SHA for 7ac6158
File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 2
2
# Parse-Swift Changelog
3
3
4
4
### main
5
- [ Full Changelog] ( https://github.com/netreconlab/Parse-Swift/compare/5.11.0 ...main ) , [ Documentation] ( https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift )
5
+ [ Full Changelog] ( https://github.com/netreconlab/Parse-Swift/compare/5.11.1 ...main ) , [ Documentation] ( https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift )
6
6
* _ Contributing to this repo? Add info about your change here to be included in the next release_
7
7
8
+
9
+ ### 5.11.1
10
+ [ Full Changelog] ( https://github.com/netreconlab/Parse-Swift/compare/5.11.0...5.11.1 ) , [ Documentation] ( https://swiftpackageindex.com/netreconlab/Parse-Swift/5.11.0/documentation/parseswift )
11
+
12
+ __ Fixes__
13
+ * Make className property of ParseHookTriggerObject public ([ #180 ] ( https://github.com/netreconlab/Parse-Swift/pull/180 ) ), thanks to [ Corey Baker] ( https://github.com/cbaker6 ) .
14
+
8
15
### 5.11.0
9
16
[ Full Changelog] ( https://github.com/netreconlab/Parse-Swift/compare/5.10.3...5.11.0 ) , [ Documentation] ( https://swiftpackageindex.com/netreconlab/Parse-Swift/5.11.0/documentation/parseswift )
10
17
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import Foundation
10
10
11
11
enum ParseConstants {
12
12
static let sdk = " swift "
13
- static let version = " 5.11.0 "
13
+ static let version = " 5.11.1 "
14
14
static let fileManagementDirectory = " parse/ "
15
15
static let fileManagementPrivateDocumentsDirectory = " Private Documents/ "
16
16
static let fileManagementLibraryDirectory = " Library/ "
@@ -88,7 +88,7 @@ public enum ParseHookTriggerObject: Sendable {
88
88
case liveQueryConnect
89
89
90
90
/// The class name of the `ParseObject` to trigger on.
91
- var className : String {
91
+ public var className : String {
92
92
switch self {
93
93
94
94
case . objectType( let object) :
You can’t perform that action at this time.
0 commit comments