Skip to content

Commit eb3e2a3

Browse files
committed
Update version 1.9.4
1 parent 7895cbb commit eb3e2a3

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
# Change Log
99

10+
## [1.9.4](https://github.com/layoutBox/PinLayout/releases/tag/1.9.4)
11+
Released on 2021-05-17
12+
13+
* Update to Xcode 12.5
14+
* Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#223](https://github.com/layoutBox/PinLayout/pull/223)
15+
16+
1017
## [1.9.3](https://github.com/layoutBox/PinLayout/releases/tag/1.9.3)
1118
Released on 2020-12-17
1219

Diff for: PinLayout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |spec|
1010
spec.name = "PinLayout"
11-
spec.version = "1.9.3"
11+
spec.version = "1.9.4"
1212
spec.summary = "Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast."
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"

Diff for: Tests/Common/ObjectiveCSpec.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
});
5959

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

0 commit comments

Comments
 (0)