Authored by Pavel Mazurin

Updated changelog and podspec

1 -v0.6.0 1 +v0.5.4
2 ====== 2 ======
3 3
4 -#### - [iOS 8] Added `activate` & `deactivate` methods 4 +#### - Improved support of iOS 8
5 5
6 -They use iOS 8's `active` property from `NSLayoutConstraint`, which allows to deactivate constraint. This allows to avoid using of `uninstall` and `install` methods, which leads to an overhead while searching closest common superview. 6 +As of iOS 8 there is `active` property of `NSLayoutConstraint` available, which allows to (de)activate constraint without searching closest common superview.
7 7
8 -In order to use these methods, deployment version should be iOS 8+. 8 +#### - Added support of iPhone 6 and iPhone 6+ to test project
9 9
10 v0.5.3 10 v0.5.3
11 ====== 11 ======
1 Pod::Spec.new do |s| 1 Pod::Spec.new do |s|
2 s.name = 'Masonry' 2 s.name = 'Masonry'
3 - s.version = '0.6.0' 3 + s.version = '0.5.4'
4 s.license = 'MIT' 4 s.license = 'MIT'
5 s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.' 5 s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
6 s.homepage = 'https://github.com/cloudkite/Masonry' 6 s.homepage = 'https://github.com/cloudkite/Masonry'
7 s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' } 7 s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
8 s.social_media_url = "http://twitter.com/cloudkite" 8 s.social_media_url = "http://twitter.com/cloudkite"
9 9
10 - s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.6.0' } 10 + s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.5.4' }
11 11
12 s.description = %{ 12 s.description = %{
13 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. 13 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.