File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 77
88# Change Log
99
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+
1048## [ 1.3.32] ( https://github.com/layoutBox/FlexLayout/releases/tag/1.3.32 )
1149Released on 2023-05-10
1250
Original file line number Diff line number Diff line change 11
22Pod ::Spec . new do |spec |
33 spec . name = "FlexLayout"
4- spec . version = "1.3.32 "
4+ spec . version = "1.3.33 "
55 spec . summary = "FlexLayout"
66 spec . homepage = "https://github.com/lucdion/FlexLayout.git"
77 spec . license = "MIT license"
You can’t perform that action at this time.
0 commit comments