Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Nov 18, 2017
1 parent 465da97 commit ad70e74
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Supporting/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.3</string>
<string>0.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Yalta.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit ad70e74

Please sign in to comment.