Skip to content

Commit 7c651ad

Browse files
author
Luc Dion
committed
Update version to 1.3.4
1 parent ab6919c commit 7c651ad

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@
77

88
# Change Log
99

10+
## [1.3.4](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.3)
11+
Released on 2018-03-05
12+
13+
* Fix retain cycle
14+
* Now Flex's hosting view is kept using a weak reference.
15+
* Fixed by [Alexey Zinchenko](https://github.com/zintus) in Pull Request [#64](https://github.com/layoutBox/FlexLayout/pull/64)
16+
1017
## [1.3.3](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.3)
1118
Released on 2018-02-28
1219

1320
* Fix Yoga's rounding issues
1421
* Integer truncation of sizes calculated by sizeThatFits:, and utility functions. Introduced by Obj-C -> Obj-C++ conversion in previous PR
1522
* Low coordinate rounding threshold, which results in flooring apparently valid values. Layout becomes very wrong with absolute coordinate values larger than 100 and having pointScaleFactor set to 3.
16-
* Added by [Alexey Zinchenko](https://github.com/zintus) in Pull Request [#63](https://github.com/layoutBox/FlexLayout/pull/63)
23+
* Fixed by [Alexey Zinchenko](https://github.com/zintus) in Pull Request [#63](https://github.com/layoutBox/FlexLayout/pull/63)
1724

1825
## [1.3.2](https://github.com/layoutBox/FlexLayout/releases/tag/1.3.2)
1926
Released on 2018-02-27

FlexLayout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |spec|
33
spec.name = "FlexLayout"
4-
spec.version = "1.3.3"
4+
spec.version = "1.3.4"
55
spec.summary = "FlexLayout"
66

77
spec.homepage = "https://github.com/lucdion/FlexLayout.git"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -389,15 +389,15 @@ The same results can also be obtained without using the `define()` method, but t
389389

390390
<a name="accessing_flexbox_view"></a>
391391
### Accessing flex item's UIView
392-
It is possible to access the flex items's UIView using `flex.view`. This is particularly usefull when using `flex.define()` method.
392+
It is possible to access the flex items's UIView using `flex.view`. This is particularly useful when using `flex.define()` method.
393393

394394
###### Example:
395395
This example creates a flexbox container and sets its alpha to 0.8.
396396

397397
```swift
398398
view.flex.direction(.row).padding(20).alignItems(.center).define { (flex) in
399399
flex.addItem().width(50).height(50).define { (flex) in
400-
flex.view.alpha = 0.8
400+
flex.view?.alpha = 0.8
401401
}
402402
}
403403
```

0 commit comments

Comments
 (0)