diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de0eec..d3436dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +v0.2.6 +====== + +* Updated list of UIAppearance-setters in tests +* Fixed misnamed @param name in code docs +* Support for iOS 10 font weights +* Reduced warnings caused by missing void in method input declaration + v0.2.5 ====== diff --git a/Classy.podspec b/Classy.podspec index c519727..0180c63 100644 --- a/Classy.podspec +++ b/Classy.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| s.name = 'Classy' - s.version = '0.2.5' + s.version = '0.2.6' s.license = 'MIT' s.summary = 'Expressive, flexible, and powerful stylesheets for UIView and friends.' s.homepage = 'http://classykit.github.io/Classy/' s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' } s.social_media_url = "http://twitter.com/cloudkite" - s.source = { :git => 'https://github.com/cloudkite/Classy.git', :tag => 'v0.2.5' } + s.source = { :git => 'https://github.com/cloudkite/Classy.git', :tag => 'v0.2.6' } s.description = %{ Not CSS. Instead of trying to force UIKit to fit CSS syntax, properties, conventions and constructs. diff --git a/Podfile b/Podfile index 441ee74..bc86060 100644 --- a/Podfile +++ b/Podfile @@ -1,6 +1,6 @@ workspace 'Classy' -platform :ios, '6.0' +platform :ios, '9.0' project 'Example/ClassyExample'