Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilvagomez committed Mar 29, 2019
1 parent 790ca83 commit 4e164d9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2
5
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Localize.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,13 @@ platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
pod 'Localize' , '~> 2.1.0'
pod 'Localize' , '~> 2.2.0'
end

# If you are using Swift 4.x
# target '<Your Target Name>' do
# pod 'Localize' , '~> 2.1.0'
# end
```

Then, run the following command:
Expand Down

1 comment on commit 4e164d9

@tladesignz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot to publish on CocoaPods?

Please sign in to comment.