From 2a4b292ae6ae632b19107013c3ecccd2574fb01a Mon Sep 17 00:00:00 2001 From: Luc Dion Date: Tue, 17 Jul 2018 10:16:43 -0400 Subject: [PATCH] Add release 1.7.10 --- CHANGELOG.md | 9 +++++++++ PinLayout.podspec | 2 +- README.md | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bd6f8e..53c77b8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ # Change Log +## [1.7.10](https://github.com/layoutBox/PinLayout/releases/tag/1.7.10) +Released on 2018-07-17 + +#### Add `sizeToFit()` method. +The method adjust the view's size based on the result of the method `UIView.sizeToFit()`. Particularly useful for controls/views that have an intrinsic size (label, button, ...). + +* Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#158](https://github.com/layoutBox/PinLayout/pull/158) + + ## [1.7.9](https://github.com/layoutBox/PinLayout/releases/tag/1.7.9) Released on 2018-06-28 diff --git a/PinLayout.podspec b/PinLayout.podspec index ca81468c..a7dc1390 100644 --- a/PinLayout.podspec +++ b/PinLayout.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |spec| spec.name = "PinLayout" - spec.version = "1.7.9" + spec.version = "1.7.10" spec.summary = "Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast. [iOS/macOS/tvOS]" 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]" spec.homepage = "https://github.com/layoutBox/PinLayout" diff --git a/README.md b/README.md index da9cdbdd..05e6952d 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Extremely Fast views layouting without auto layout. No magic, pure code, full co * Swift 3.2+ / Swift 4.1 / Objective-C ### Recent changes/features +* :star: Add `sizeToFit()` method. See [Adjusting size](#adjusting_size). * :star: PinLayout can now layout CALayer. See [CALayer Support](#calayer_support) for more information. * :star: PinLayout is in the Top 10 of Swift Layout frameworks on [Awesome Swift](https://swift.libhunt.com/categories/714-layout) * :star: PinLayout has moved to the **[layoutBox](https://github.com/layoutBox)** organization. See other **[layoutBox](https://github.com/layoutBox)** projects.