From 2cc23f5712413243e147795faee37f18436498ce Mon Sep 17 00:00:00 2001 From: Tristan Himmelman Date: Thu, 15 Nov 2018 15:38:29 -0500 Subject: [PATCH] updated version number --- AlamofireObjectMapper.podspec | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AlamofireObjectMapper.podspec b/AlamofireObjectMapper.podspec index 2421b38..b58efb3 100644 --- a/AlamofireObjectMapper.podspec +++ b/AlamofireObjectMapper.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "AlamofireObjectMapper" - s.version = "5.1.0" + s.version = "5.2.0" s.license = { :type => "MIT", :file => "LICENSE" } s.summary = "An extension to Alamofire which automatically converts JSON response data into swift objects using ObjectMapper" s.homepage = "https://github.com/tristanhimmelman/AlamofireObjectMapper" diff --git a/README.md b/README.md index 55c3ff9..06f967d 100644 --- a/README.md +++ b/README.md @@ -184,10 +184,10 @@ Alamofire.request(URL).responseArray { (response: DataResponse<[Forecast]>) in # Installation AlamofireObjectMapper can be added to your project using [CocoaPods](https://cocoapods.org/) by adding the following line to your Podfile: ``` -pod 'AlamofireObjectMapper', '~> 5.0' +pod 'AlamofireObjectMapper', '~> 5.2' ``` If you're using [Carthage](https://github.com/Carthage/Carthage) you can add a dependency on AlamofireObjectMapper by adding it to your Cartfile: ``` -github "tristanhimmelman/AlamofireObjectMapper" ~> 5.0 +github "tristanhimmelman/AlamofireObjectMapper" ~> 5.2 ```