diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fa44e2b..53472236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ #MMDrawerController Changelog +##0.5.2 (Friday, January 31, 2014) +###Fixed +* **FIXED** a Clang Analyzer issue ([#120](https://github.com/mutualmobile/MMDrawerController/pull/120)) found in Xcode 5. (klundberg) +* **FIXED** an issue ([#124](https://github.com/mutualmobile/MMDrawerController/pull/124)) where the navigation bar gestures would not work if a toolbar was displayed in the center view controller. (tbveralrud) +* **FIXED** an issue ([#152](https://github.com/mutualmobile/MMDrawerController/pull/152)) where two childControllerContainers view could be init'ed and added to the view hierarchy. (Kevin Harwood, JonasGessner) +* **FIXED** an issue ([#163](https://github.com/mutualmobile/MMDrawerController/pull/163)) where the navigation bar touch areas were smaller than they were supposed to be. (antonholmquist) +* **FIXED** an issue ([#177](https://github.com/mutualmobile/MMDrawerController/pull/177)) where disabling the shadow caused a performance issue in iOS 7. (Lars Anderson) +* **FIXED** an issue ([#211](https://github.com/mutualmobile/MMDrawerController/pull/211)) where the side drawer may become hidden if you try to interact with it during an animation. (Kevin Harwood, antonholmquist) +* **FIXED** an issue ([#212](https://github.com/mutualmobile/MMDrawerController/pull/212)) where the view controller appearance methods were not correctly send to the center view controller if you exchanged it while neither drawer was open. (Kevin Harwood, Club15CC) + +###New +* **Added Highlighting for iOS 7 Drawer Button Item** - Now supporting button highlighting. Also stream lined code path for iOS 6 menu button. ([#199](https://github.com/mutualmobile/MMDrawerController/pull/119)) (TomSwift) + ##0.5.1 (Wednesday, September 18, 2013) ###Fixed diff --git a/MMDrawerController.podspec b/MMDrawerController.podspec index 9f770b8f..949a9047 100644 --- a/MMDrawerController.podspec +++ b/MMDrawerController.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "MMDrawerController" - s.version = "0.5.1" + s.version = "0.5.2" s.summary = "A lightweight, easy-to-use side drawer navigation controller." s.homepage = "https://github.com/mutualmobile/MMDrawerController" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Kevin Harwood" => "kevin.harwood@mutualmobile.com" } - s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.5.1" } + s.source = { :git => "https://github.com/mutualmobile/MMDrawerController.git", :tag => "0.5.2" } s.platform = :ios, '5.0' s.requires_arc = true s.screenshots = [ "http://mutualmobile.github.io/MMDrawerController/ExampleImages/example1.png", diff --git a/README.md b/README.md index 8b91f095..140427de 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Official appledoc documentation can be found at [CocoaDocs](http://cocoadocs.org You can install MMDrawerController in your project by using [CocoaPods](https://github.com/cocoapods/cocoapods): ```Ruby -pod 'MMDrawerController', '~> 0.4.0' +pod 'MMDrawerController', '~> 0.5.2' ``` ---