Skip to content

Commit 1c9b64a

Browse files
committed
* Create release 1.3.29
* Fix compilation warning
1 parent 5c0073d commit 1c9b64a

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
# Change Log
99

10+
## [1.3.29](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.29)
11+
Released on 2023-02-28
12+
13+
#### Add `border(_ width: CGFloat, _ color: UIColor)`
14+
15+
Added by [gyuchan](https://github.com/gyuchan) in Pull Request [#216](https://github.com/layoutBox/FlexLayout/pull/216)
16+
1017
## [1.3.28](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.28)
1118
Released on 2023-02-25
1219

FlexLayout.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22
Pod::Spec.new do |spec|
33
spec.name = "FlexLayout"
4-
spec.version = "1.3.28"
4+
spec.version = "1.3.29"
55
spec.summary = "FlexLayout"
66
spec.homepage = "https://github.com/lucdion/FlexLayout.git"
77
spec.license = "MIT license"
88
spec.author = { "Luc Dion" => "[email protected]" }
99

10-
spec.platform = :ios, "9.0"
10+
spec.platform = :ios, "11.0"
1111
spec.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{spec.version}" }
1212
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}"
1313
spec.public_header_files = "Sources/yoga/include/yoga/*.h", "Sources/YogaKit/include/YogaKit/*.h"

Sources/Swift/FlexLayout.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public final class Flex {
187187
case .columnReverse: return Flex.Direction.columnReverse
188188
case .row: return Flex.Direction.row
189189
case .rowReverse: return Flex.Direction.rowReverse
190-
@unknown default: return nil
190+
default: return nil
191191
}
192192
}
193193
set {

0 commit comments

Comments
 (0)