Skip to content

Commit d6ce7b0

Browse files
author
Luc Dion
committed
Update version number to 1.8.5
1 parent 963ea84 commit d6ce7b0

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

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

88
# Change Log
99

10+
## [1.8.5](https://github.com/layoutBox/PinLayout/releases/tag/1.8.4)
11+
Released on 2018-09-27
12+
13+
#### Minor internal changes
14+
Remove `sizeToFit()` from SizeCalculable protocol.
15+
This change ensure that PinLayout `pin.sizeToFit()` method behave correctly. As per the iOS documentation, we should not directly override sizeToFit() but rather always only implement sizeThatFits(_:) for auto-sizing needs. This update aim to remove the sizeToFit() requirement in the SizeCalculable protocol.
16+
17+
* Added by [Antoine Lamy](https://github.com/antoinelamy) in Pull Request [#164](https://github.com/layoutBox/PinLayout/pull/164)
18+
19+
1020
## [1.8.4](https://github.com/layoutBox/PinLayout/releases/tag/1.8.4)
1121
Released on 2018-09-25
1222

PinLayout.podspec

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

99
Pod::Spec.new do |spec|
1010
spec.name = "PinLayout"
11-
spec.version = "1.8.4"
11+
spec.version = "1.8.5"
1212
spec.summary = "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]"
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"
1515
spec.license = "MIT license"
1616
spec.author = { "Luc Dion" => "[email protected]" }
1717
spec.source = { :git => "https://github.com/layoutBox/PinLayout.git", :tag => "#{spec.version}" }
1818
spec.source_files = "Sources/**/*.swift"
19-
spec.swift_version = '4.0'
19+
spec.swift_version = '4.1'
2020

2121
spec.ios.deployment_target = '8.0'
2222
spec.ios.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'

0 commit comments

Comments
 (0)