From 4e164d9635ef1848219a25c5e775b4b596647e2b Mon Sep 17 00:00:00 2001 From: Andres Silva Date: Thu, 28 Mar 2019 19:46:19 -0500 Subject: [PATCH] Version 2.2.0 --- .swift-version | 2 +- CHANGELOG.md | 10 ++++++++++ Localize.podspec | 4 ++-- README.md | 7 ++++++- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.swift-version b/.swift-version index bf77d54..7ed6ff8 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -4.2 +5 diff --git a/CHANGELOG.md b/CHANGELOG.md index 07aa493..ad941b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. `Localize` adheres to [Semantic Versioning](http://semver.org/). +## [2.2.0](https://github.com/andresilvagomez/Localize/releases/tag/2.2.0) + +Released on 2019-03-28. + +- Added function to check if key exist +- Added Swift 5 + - By [Andres Silva](https://github.com/andresilvagomez). + +--- + ## [2.1.0](https://github.com/andresilvagomez/Localize/releases/tag/2.1.0) Released on 2018-10-24. diff --git a/Localize.podspec b/Localize.podspec index f0e4e9c..5f078bc 100644 --- a/Localize.podspec +++ b/Localize.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = "Localize" - s.version = "2.1.0" + s.version = "2.2.0" s.license = 'MIT' s.summary = "Localize is a framework writed in swift to localize your projects easier improves i18n, including storyboards and strings." s.homepage = "https://github.com/andresilvagomez/Localize" s.author = { "Andres Silva" => "me@andresilvagomez.com" } - s.source = { :git => "https://github.com/andresilvagomez/Localize.git", :tag => "2.1.0" } + s.source = { :git => "https://github.com/andresilvagomez/Localize.git", :tag => "2.2.0" } s.ios.deployment_target = '9.0' s.source_files = "Source/*.swift" diff --git a/README.md b/README.md index 818bc2f..3fd4160 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,13 @@ platform :ios, '9.0' use_frameworks! target '' do - pod 'Localize' , '~> 2.1.0' + pod 'Localize' , '~> 2.2.0' end + +# If you are using Swift 4.x +# target '' do +# pod 'Localize' , '~> 2.1.0' +# end ``` Then, run the following command: