Skip to content

Commit 75c88c5

Browse files
committed
Update to version 1.10.3
1 parent 676ef4f commit 75c88c5

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

Diff for: CHANGELOG.md

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

88
# Change Log
99

10+
## [1.10.3](https://github.com/layoutBox/PinLayout/releases/tag/1.10.2)
11+
Released on 2022-06-07
12+
13+
#### Fix Xcode Live Preview
14+
15+
Fix an error while using Xcode live preview with PinLayout. An internal class has been renamed.
16+
17+
Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#243](https://github.com/layoutBox/PinLayout/pull/243)
18+
19+
1020
## [1.10.2](https://github.com/layoutBox/PinLayout/releases/tag/1.10.2)
1121
Released on 2022-02-01
1222

1323
#### Renamed property `pin.keyboardMargins` -> `pin.keyboardArea`
1424

1525
This new name better represent what `UIKit`'s `UIView.keyboardLayoutGuide` is
1626

17-
Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#243](https://github.com/layoutBox/PinLayout/pull/243)
27+
Added by [OriTheElf](https://github.com/OriTheElf) in Pull Request [#251](https://github.com/layoutBox/PinLayout/pull/251)
1828

1929
## [1.10.1](https://github.com/layoutBox/PinLayout/releases/tag/1.10.1)
2030
Released on 2022-02-01

Diff for: PinLayout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |spec|
1010
spec.name = "PinLayout"
11-
spec.version = "1.10.2"
11+
spec.version = "1.10.3"
1212
spec.summary = "Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast."
1313
spec.description = "Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable. [iOS/macOS/tvOS/CALayer]"
1414
spec.homepage = "https://github.com/layoutBox/PinLayout"

Diff for: Sources/PinLayout+WrapContent.swift

+15-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ extension PinLayout {
4444
}
4545

4646
/**
47-
Adjust the view's width & height to wrap all its subviews. The method also adds a padding around all subviews.
47+
The method...
48+
- Adjust the view's width and height to wrap all its subviews.
49+
- Adjust subviews's position to create a tight wrap.
50+
- Apply padding around all subviews.
4851

4952
- Parameters:
5053
- padding: Specify a padding using an UIEdgeInsets.
@@ -55,7 +58,9 @@ extension PinLayout {
5558
}
5659

5760
/**
58-
Adjust the view's width AND/OR height to wrap all its subviews.
61+
The method...
62+
- Adjust the view's width and height to wrap all its subviews.
63+
- Adjust subviews's position to create a tight wrap.
5964

6065
- Parameters:
6166
- type: Specify the wrap type (.all, .horizontally, .vertically)
@@ -66,7 +71,10 @@ extension PinLayout {
6671
}
6772

6873
/**
69-
Adjust the view's width AND/OR height to wrap all its subviews. The method also adds a padding around all subviews.
74+
The method...
75+
- Adjust the view's width and height to wrap all its subviews.
76+
- Adjust subviews's position to create a tight wrap.
77+
- Apply padding around all subviews.
7078

7179
- Parameters:
7280
- type: Specify the wrap type (.all, .horizontally, .vertically)
@@ -78,7 +86,10 @@ extension PinLayout {
7886
}
7987

8088
/**
81-
Adjust the view's width AND/OR height to wrap all its subviews. The method also adds a padding around all subviews.
89+
The method...
90+
- Adjust the view's width and height to wrap all its subviews.
91+
- Adjust subviews's position to create a tight wrap.
92+
- Apply padding around all subviews.
8293

8394
- Parameters:
8495
- type: Specify the wrap type (.all, .horizontally, .vertically)

0 commit comments

Comments
 (0)