Jonas Budelmann 11 år sedan
förälder
incheckning
185b18606e
2 ändrade filer med 14 tillägg och 2 borttagningar
  1. 12 0
      CHANGELOG.md
  2. 2 2
      Masonry.podspec

+ 12 - 0
CHANGELOG.md

@@ -1,3 +1,15 @@
+v0.3.1
+=======
+
+* Add the same set of constraints to multiple views in an array ([danielrhammond](https://github.com/danielrhammond))
+
+```objective-c
+[@[view1, view2, view3] mas_makeConstraints:^(MASConstraintMaker *make) {
+    make.baseline.equalTo(superView.mas_centerY);
+    make.width.equalTo(@100);
+}];
+```
+
 v0.3.0
 =======
 

+ 2 - 2
Masonry.podspec

@@ -1,12 +1,12 @@
 Pod::Spec.new do |s|
   s.name     = 'Masonry'
-  s.version  = '0.3.0'
+  s.version  = '0.3.1'
   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.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.3.0' }
+  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.3.1' }
 
   s.description = %{
     Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.