From 282cf90557a5c84a7950c93af2fcd3fca5d98866 Mon Sep 17 00:00:00 2001 From: Andres Silva Gomez Date: Thu, 10 May 2018 21:54:28 -0500 Subject: [PATCH] Version 2.0.2 --- CHANGELOG.md | 8 ++++++++ Localize.podspec | 4 ++-- README.md | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 786318b..6739519 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. `Localize` adheres to [Semantic Versioning](http://semver.org/). +## [2.0.2](https://github.com/andresilvagomez/Localize/releases/tag/2.0.2) +Released on 2018-05-10. + +#### Added +- Improve strings with extended languajes like to es-mx for defaults localizations. + - By [Benjamin Erhart](https://github.com/tladesignz) in Pull Request + [#24](https://github.com/andresilvagomez/Localize/pull/25). + ## [2.0.1](https://github.com/andresilvagomez/Localize/releases/tag/2.0.1) Released on 2018-04-15. diff --git a/Localize.podspec b/Localize.podspec index a400797..a3a8d78 100644 --- a/Localize.podspec +++ b/Localize.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = "Localize" - s.version = "2.0.1" + s.version = "2.0.2" 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" => "andresilvagomez@gmail.com" } - s.source = { :git => "https://github.com/andresilvagomez/Localize.git", :tag => "2.0.1" } + s.source = { :git => "https://github.com/andresilvagomez/Localize.git", :tag => "2.0.2" } s.ios.deployment_target = '9.0' s.source_files = "Source/*.swift" diff --git a/README.md b/README.md index dbd7b34..31e1014 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ platform :ios, '9.0' use_frameworks! target '' do - pod 'Localize' , '~> 2.0.1' + pod 'Localize' , '~> 2.0.2' end ```