From 183512d23f463c4b34155acfe939b756941a442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20B=C3=B6hnke?= Date: Sun, 17 Nov 2013 21:01:19 +0100 Subject: [PATCH] Version 0.3.0 --- RBBAnimation.podspec | 7 ++++--- README.md | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/RBBAnimation.podspec b/RBBAnimation.podspec index 2a94b04..565571e 100644 --- a/RBBAnimation.podspec +++ b/RBBAnimation.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RBBAnimation" - s.version = "0.2.0" + s.version = "0.3.0" s.summary = "Block-based animations made easy." s.description = <<-DESC RBBAnimation is a subclass of CAKeyframeAnimation that allows you to @@ -15,9 +15,10 @@ Pod::Spec.new do |s| s.author = { "Robert Böhnke" => "robb@robb.is" } - s.ios.deployment_target = '7.0' + s.ios.deployment_target = '6.0' + s.osx.deployment_target = '10.8' - s.source = { :git => "https://github.com/robb/RBBAnimation.git", :tag => "v0.2.0" } + s.source = { :git => "https://github.com/robb/RBBAnimation.git", :tag => "v0.3.0" } s.source_files = 'RBBAnimation', 'RBBAnimation/**/*.{h,m}' diff --git a/README.md b/README.md index 30f79b9..e5e6e07 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To install RBBAnimation, I recommend the excellent [CocoaPods]. Simply add this to your Podfile ```ruby -pod 'RBBAnimation', '0.2.0' +pod 'RBBAnimation', '0.3.0' ``` and you are ready to go!