diff --git a/CHANGELOG.md b/CHANGELOG.md
index 121bd7f..7ed6fa9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
# Next
+## [0.22.1](https://github.com/lucasmedeirosleite/EasyMapping/releases/tag/0.22.1)
+
+* Added support for recognizing structs as native types, for example `CLLocationCoordinate2D` - #168(thanks, @sebastianludwig)
+
## [0.22.0](https://github.com/lucasmedeirosleite/EasyMapping/releases/tag/0.22.0)
* Removed too strict generic constraints from `EKMapper` and `EKManagedObjectMapper` classes.
diff --git a/Configs/EasyMapping.plist b/Configs/EasyMapping.plist
index 47cebe4..b837662 100644
--- a/Configs/EasyMapping.plist
+++ b/Configs/EasyMapping.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.22.0
+ 0.22.1
CFBundleSignature
????
CFBundleVersion
diff --git a/Configs/EasyMappingTests.plist b/Configs/EasyMappingTests.plist
index 4e19536..286e181 100644
--- a/Configs/EasyMappingTests.plist
+++ b/Configs/EasyMappingTests.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 0.22.0
+ 0.22.1
CFBundleSignature
????
CFBundleVersion
diff --git a/EasyMapping.podspec b/EasyMapping.podspec
index da3d923..d2e7ddb 100644
--- a/EasyMapping.podspec
+++ b/EasyMapping.podspec
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "EasyMapping"
- s.version = "0.22.0"
+ s.version = "0.22.1"
s.summary = "The easiest way to map data from your webservice."
s.homepage = "https://github.com/lucasmedeirosleite/EasyMapping"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Lucas Medeiros" => "lucastoc@gmail.com",
- "Denys Telezhkin" => "denys.telezhkin@yandex.ru" }
+ "Denys Telezhkin" => "denys.telezhkin.oss@gmail.com" }
s.source = { :git => "https://github.com/lucasmedeirosleite/EasyMapping.git", :tag => s.version.to_s }
s.requires_arc = true