File tree 2 files changed +39
-1
lines changed
2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
# Change Log
9
9
10
+ ## [ 1.3.33] ( https://github.com/layoutBox/FlexLayout/releases/tag/1.3.33 )
11
+ Released on 2023-06-24
12
+
13
+ #### Resolve lldb debug issue when using CocoaPods
14
+
15
+ ## Background
16
+
17
+ - Since #219 was merged, LLDB problems have occurred in environments where CocoaPods and SPM are used together.
18
+ - This reverts commit f36c766865df29ac70f31b604dde54c5a975819c. (#219 )
19
+
20
+ ## Changes
21
+
22
+ - Revert f36c766865df29ac70f31b604dde54c5a975819c commit to resolve
23
+ - The existing problem is solved by writing each package.swift like the code below
24
+
25
+
26
+ ``` swift
27
+ // in Package.swift
28
+ .target (
29
+ name : " SomeTarget" ,
30
+ dependencies : [
31
+ " FlexLayout" ,
32
+ ],
33
+ cSettings : [
34
+ .define (" FLEXLAYOUT_SWIFT_PACKAGE" ),
35
+ ],
36
+ cxxSettings : [
37
+ .define (" FLEXLAYOUT_SWIFT_PACKAGE" ),
38
+ ],
39
+ swiftSettings : [
40
+ .define (" FLEXLAYOUT_SWIFT_PACKAGE" ),
41
+ ]
42
+ )
43
+ ```
44
+
45
+ Added by [ OhKanghoon] ( https://github.com/OhKanghoon ) in Pull Request [ #226 ] ( https://github.com/layoutBox/FlexLayout/pull/226 )
46
+
47
+
10
48
## [ 1.3.32] ( https://github.com/layoutBox/FlexLayout/releases/tag/1.3.32 )
11
49
Released on 2023-05-10
12
50
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |spec |
3
3
spec . name = "FlexLayout"
4
- spec . version = "1.3.32 "
4
+ spec . version = "1.3.33 "
5
5
spec . summary = "FlexLayout"
6
6
spec . homepage = "https://github.com/lucdion/FlexLayout.git"
7
7
spec . license = "MIT license"
You can’t perform that action at this time.
0 commit comments