From ad70e748c4ae5a8b496ec30a45cd3dd530387367 Mon Sep 17 00:00:00 2001 From: kean Date: Sun, 19 Nov 2017 01:10:06 +0300 Subject: [PATCH] Version 0.3.1 --- CHANGELOG.md | 12 +++++++++++- Supporting/Info.plist | 2 +- Yalta.podspec | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af6c1bd..295760f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ [Changelog](https://github.com/kean/Yale/releases) for all versions +## Yalta 0.3.1 + +Small update that focuses on improving `offsetting(by:)` method. + +- `offsetting(by:)` method now available for all anchors +- Add an operator that wraps `offsetting(by:)` method (which wasn't very covnenient by itself) +- [Fix] Offsetting anchor which already has an offset now works correctly +- Split the project into two files + + ## Yalta 0.3 - With new `addSubview(_:constraints:)` method you define a view hierarchy and layout views at the same time. It encourages splitting layout code into logical blocks and prevents programmer errors (e.g. trying to add constraints to views not in view hierarchy). @@ -25,7 +35,7 @@ This is a much simpler model which removes entire layer of standalone methods av - Make LayoutProxy's `base` public to enable adding custom extensions on top of it. -# Yalta 0.2 +## Yalta 0.2 - Redesigned Yalta API which now follow [Swift API Design Guidelines](https://swift.org/documentation/api-design-guidelines/). Although most of the APIs are compact, it is a *non-goal* to enable the most concise syntax possible. Instead Yalta provides a fluent APIs that form grammatical phrases. - Full test coverage diff --git a/Supporting/Info.plist b/Supporting/Info.plist index 9d45612..7e82fe1 100644 --- a/Supporting/Info.plist +++ b/Supporting/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.3 + 0.3.1 CFBundleSignature ???? CFBundleVersion diff --git a/Yalta.podspec b/Yalta.podspec index 96cc2e8..dbcd95e 100644 --- a/Yalta.podspec +++ b/Yalta.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Yalta" - s.version = "0.3" + s.version = "0.3.1" s.summary = "Auto Layout for Humans" s.homepage = "https://github.com/kean/Yalta"