Skip to content

Commit 0eb6010

Browse files
author
Luc Dion
committed
Update Changelog
1 parent 1109be7 commit 0eb6010

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

CHANGELOG.md

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

88
# Change Log
99

10+
11+
## [1.4.2](https://github.com/mirego/PinLayout/releases/tag/1.4.1)
12+
#### Change
13+
Add method that can pin multiples edges:
14+
15+
* `all()`: Pin all edges on its superview's corresponding edges (top, bottom, left, right). Similar to calling `view.top().bottom().left().right()`
16+
17+
* `horizontally()`: Pin the left and right edges on its superview's corresponding edges. Similar to calling `view.left().right()`.
18+
19+
* `vertically()`: Pin the **top and bottom edges** on its superview's corresponding edges. Similar to calling `view.top().bottom()`.
20+
21+
* Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#93](https://github.com/mirego/PinLayout/pull/93)
22+
23+
1024
## [1.4.1](https://github.com/mirego/PinLayout/releases/tag/1.4.1)
1125
#### Change
1226
* Add new method `margin(_ directionalInsets: NSDirectionalEdgeInsets)`

PinLayout.podspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "PinLayout"
11-
s.version = "1.4.1"
11+
s.version = "1.4.2"
1212
s.summary = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1313
s.description = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1414

1515
s.homepage = "https://mirego.github.io/PinLayout/"
1616
s.license = "BSD 3-clause"
17-
s.author = {
18-
"Luc Dion" => "[email protected]",
17+
s.author = {
1918
"Luc Dion" => "[email protected]"
20-
}
19+
}
2120

2221
s.platform = :ios, "8.0"
2322
s.tvos.deployment_target = '9.0'

0 commit comments

Comments
 (0)