Skip to content

Commit 713fce2

Browse files
author
Luc Dion
committed
Update version to 1.1.5
1 parent badecc2 commit 713fce2

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

CHANGELOG.md

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

88
# Change Log
99

10+
## [1.1.5](https://github.com/mirego/PinLayout/releases/tag/1.1.5)
11+
Released on 2017-07-14.
12+
13+
#### Change
14+
* Fix missing UIKit import. The problem was occuring while using Swift Package Manager.
15+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#56](https://github.com/mirego/PinLayout/pull/56)
16+
1017

1118
## [1.1.4](https://github.com/mirego/PinLayout/releases/tag/1.1.4)
1219
Released on 2017-07-09.
@@ -19,17 +26,17 @@ Released on 2017-07-09.
1926
* maxHeight
2027
* justify(:HorizontalAlign)
2128
* align(:VerticalAlign)
22-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#53](https://github.com/mirego/PinLayout/pull/53)
29+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#53](https://github.com/mirego/PinLayout/pull/53)
2330

2431

2532
## [1.1.1](https://github.com/mirego/PinLayout/releases/tag/1.1.1)
2633
Released on 2017-06-27.
2734

2835
#### Change
2936
* Support **Xcode 9 Beta 2**
30-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#52](https://github.com/mirego/PinLayout/pull/52)
37+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#52](https://github.com/mirego/PinLayout/pull/52)
3138
* Add a Form example
32-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#51](https://github.com/mirego/PinLayout/pull/51)
39+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#51](https://github.com/mirego/PinLayout/pull/51)
3340
* This example demonstrates:
3441
* Usage of filter method when using PinLayout's relative methods (above, below, left, right)
3542
* Adjusting a container's height to match all its children.
@@ -43,15 +50,15 @@ Released on 2017-06-18.
4350
#### Change
4451
* Update relative methods signatures when specifying multiple relative views.
4552
Update the minor version due to a small breaking change with methods above(of…), below(of…), left(of…) and right(of…). They now takes either a single UIView or an Array of UIViews.
46-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#48](https://github.com/mirego/PinLayout/pull/48)
53+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#48](https://github.com/mirego/PinLayout/pull/48)
4754

4855

4956
## [1.0.15](https://github.com/mirego/PinLayout/releases/tag/1.0.15)
5057
Released on 2017-06-12.
5158

5259
#### Change
5360
* Add **tvOS** support & set iOS target to 8.0 (instead of 10.2)
54-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#46](https://github.com/mirego/PinLayout/pull/46)
61+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#46](https://github.com/mirego/PinLayout/pull/46)
5562

5663

5764
## [1.0.14](https://github.com/mirego/PinLayout/releases/tag/1.0.14)
@@ -60,7 +67,7 @@ Released on 2017-06-12.
6067
#### Change
6168

6269
* Implementation of **relative positioning using multiple relative views**
63-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#43](https://github.com/mirego/PinLayout/pull/43)
70+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#43](https://github.com/mirego/PinLayout/pull/43)
6471
* The following methods can now receives one or many relative views. Useful to position a view relative to many UIViews.
6572
* `above(of relativeViews: UIView...) `
6673
* `above(of relativeViews: UIView..., aligned: HorizontalAlignment) `
@@ -77,7 +84,7 @@ Released on 2017-06-08.
7784
#### Change
7885

7986
* Add **Swift Package Manager** support
80-
* Added by [Luc Dion](https://github.com/lucmirego) in Pull Request [#38](https://github.com/mirego/PinLayout/pull/38
87+
* Added by [Luc Dion](https://github.com/luc-dion) in Pull Request [#38](https://github.com/mirego/PinLayout/pull/38
8188
* **`size(…)` methods** now tries to apply the width and the height individually
8289
Previously the size specified was applied only if both the width and height wasn’t specified. Now PinLayout will apply them individually, so if the width has been specified yet, the size’s width will be applied, else a warning will be displayed that indicate that the width won’t be applied. Same thing for the height.
8390
* Doesn’t display a warning anymore if the new specified width or height value is equal to the currently set value. This is coherent with other methods (top, left, hCenter, ….)
@@ -87,7 +94,7 @@ Previously the size specified was applied only if both the width and height wasn
8794

8895
### Fixes
8996
- Fix an issue with pin.vCenter() and pin.hCenter()
90-
- Fixed by [Luc Dion](https://github.com/lucmirego) in Pull Request
97+
- Fixed by [Luc Dion](https://github.com/luc-dion) in Pull Request
9198
[#36](https://github.com/mirego/PinLayout/pull/36).
9299

93100

@@ -96,5 +103,5 @@ Released on 2017-06-06.
96103

97104
### Fixes
98105
- Fix an issue with pin.vCenter() and pin.hCenter()
99-
- Fixed by [Luc Dion](https://github.com/lucmirego) in Pull Request
106+
- Fixed by [Luc Dion](https://github.com/luc-dion) in Pull Request
100107
[#36](https://github.com/mirego/PinLayout/pull/36).

PinLayout.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

1818
s.name = "PinLayout"
19-
s.version = "1.1.4"
19+
s.version = "1.1.5"
2020
s.summary = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
2121

2222
# This description is used to generate tags and improve search results.

0 commit comments

Comments
 (0)