Jonas Budelmann 12 سال پیش
والد
کامیت
af55c70e7b
3فایلهای تغییر یافته به همراه5 افزوده شده و 8 حذف شده
  1. 3 3
      Masonry.podspec
  2. 1 1
      Masonry/Masonry-Info.plist
  3. 1 4
      README.md

+ 3 - 3
Masonry.podspec

@@ -1,12 +1,12 @@
 Pod::Spec.new do |s|
 Pod::Spec.new do |s|
   s.name     = 'Masonry'
   s.name     = 'Masonry'
-  s.version  = '0.2.2'
+  s.version  = '0.2.3'
   s.license  = 'MIT'
   s.license  = 'MIT'
   s.summary  = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
   s.summary  = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
   s.homepage = 'https://github.com/cloudkite/Masonry'
   s.homepage = 'https://github.com/cloudkite/Masonry'
   s.author   = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
   s.author   = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
 
 
-  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.2' }
+  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.3' }
 
 
   s.description = %{
   s.description = %{
     Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
     Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
@@ -23,4 +23,4 @@ Pod::Spec.new do |s|
   s.ios.deployment_target = '6.0' # minimum SDK with autolayout
   s.ios.deployment_target = '6.0' # minimum SDK with autolayout
   s.osx.deployment_target = '10.7' # minimum SDK with autolayout
   s.osx.deployment_target = '10.7' # minimum SDK with autolayout
   s.requires_arc = true
   s.requires_arc = true
-end
+end

+ 1 - 1
Masonry/Masonry-Info.plist

@@ -17,7 +17,7 @@
 	<key>CFBundlePackageType</key>
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
 	<key>CFBundleShortVersionString</key>
-	<string>0.2.2</string>
+	<string>0.2.3</string>
 	<key>CFBundleSignature</key>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<string>????</string>
 	<key>CFBundleVersion</key>
 	<key>CFBundleVersion</key>

+ 1 - 4
README.md

@@ -1,13 +1,10 @@
-Masonry 
-=======
+#Masonry [![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)
 
 
 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonry has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.
 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonry has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.
 Masonry supports iOS and Mac OSX.
 Masonry supports iOS and Mac OSX.
 
 
 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace.
 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace.
 
 
-[![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)
-
 ## Whats wrong with NSLayoutConstraints?
 ## Whats wrong with NSLayoutConstraints?
 
 
 Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive.
 Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive.