فهرست منبع

Updated podspec and changelog.

Pavel Mazurin 11 سال پیش
والد
کامیت
4c50f4e21d
2فایلهای تغییر یافته به همراه11 افزوده شده و 2 حذف شده
  1. 9 0
      CHANGELOG.md
  2. 2 2
      Masonry.podspec

+ 9 - 0
CHANGELOG.md

@@ -1,3 +1,12 @@
+v0.6.0
+======
+
+#### - [iOS 8] Added `activate` & `deactivate` methods
+
+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.
+
+In order to use these methods, deployment version should be iOS 8+.
+
 v0.5.3
 ======
 

+ 2 - 2
Masonry.podspec

@@ -1,13 +1,13 @@
 Pod::Spec.new do |s|
   s.name     = 'Masonry'
-  s.version  = '0.5.3'
+  s.version  = '0.6.0'
   s.license  = 'MIT'
   s.summary  = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
   s.homepage = 'https://github.com/cloudkite/Masonry'
   s.author   = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
   s.social_media_url = "http://twitter.com/cloudkite"
 
-  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.5.3' }
+  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.6.0' }
 
   s.description = %{
     Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.