Skip to content

Commit

Permalink
Update version 1.3.33
Browse files Browse the repository at this point in the history
  • Loading branch information
lucdion committed Jun 24, 2023
1 parent cba41c7 commit f318774
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,44 @@

# Change Log

## [1.3.33](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.33)
Released on 2023-06-24

#### Resolve lldb debug issue when using CocoaPods

## Background

- Since #219 was merged, LLDB problems have occurred in environments where CocoaPods and SPM are used together.
- This reverts commit f36c766865df29ac70f31b604dde54c5a975819c. (#219)

## Changes

- Revert f36c766865df29ac70f31b604dde54c5a975819c commit to resolve
- The existing problem is solved by writing each package.swift like the code below


```swift
// in Package.swift
.target(
name: "SomeTarget",
dependencies: [
"FlexLayout",
],
cSettings: [
.define("FLEXLAYOUT_SWIFT_PACKAGE"),
],
cxxSettings: [
.define("FLEXLAYOUT_SWIFT_PACKAGE"),
],
swiftSettings: [
.define("FLEXLAYOUT_SWIFT_PACKAGE"),
]
)
```

Added by [OhKanghoon](https://github.com/OhKanghoon) in Pull Request [#226](https://github.com/layoutBox/FlexLayout/pull/226)


## [1.3.32](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.32)
Released on 2023-05-10

Expand Down
2 changes: 1 addition & 1 deletion FlexLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |spec|
spec.name = "FlexLayout"
spec.version = "1.3.32"
spec.version = "1.3.33"
spec.summary = "FlexLayout"
spec.homepage = "https://github.com/lucdion/FlexLayout.git"
spec.license = "MIT license"
Expand Down

0 comments on commit f318774

Please sign in to comment.