Skip to content

Commit

Permalink
Update version 1.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lucdion committed May 17, 2021
1 parent 7895cbb commit eb3e2a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@

# Change Log

## [1.9.4](https://github.com/layoutBox/PinLayout/releases/tag/1.9.4)
Released on 2021-05-17

* Update to Xcode 12.5
* Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#223](https://github.com/layoutBox/PinLayout/pull/223)


## [1.9.3](https://github.com/layoutBox/PinLayout/releases/tag/1.9.3)
Released on 2020-12-17

Expand Down
2 changes: 1 addition & 1 deletion PinLayout.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |spec|
spec.name = "PinLayout"
spec.version = "1.9.3"
spec.version = "1.9.4"
spec.summary = "Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast."
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]"
spec.homepage = "https://github.com/layoutBox/PinLayout"
Expand Down
2 changes: 1 addition & 1 deletion Tests/Common/ObjectiveCSpec.m
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
});

it(@"basic pinlayout calls", ^{
[[[aView pinObjc] top:10] layout];
aView.pinObjc.topValue(10).layout();
expect(@(aView.frame)).to(equal(@(CGRectMake(40, 10, 100, 60))));
});

Expand Down

0 comments on commit eb3e2a3

Please sign in to comment.