Skip to content

Commit f318774

Browse files
committed
Update version 1.3.33
1 parent cba41c7 commit f318774

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@
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)
1149
Released on 2023-05-10
1250

FlexLayout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::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"

0 commit comments

Comments
 (0)