diff --git a/CHANGELOG.md b/CHANGELOG.md
index d692dd4..227f5c1 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 0.2.3: Watch your words
+
+* Updated to Swift 4 [#60](https://github.com/yopeso/Taylor/pull/60)
+ [Alex Culeva](https://github.com/S2dentik)
+
+* Fixed the bug when Taylor couldn't read unquoted excludes [#3](https://github.com/S2dentik/ExcludesFileReader/pull/3)
+ [Alex Culeva](https://github.com/S2dentik)
+
## 0.2.2: Don't get stuck
* Fixed the bug when Taylor got stuck [#51](https://github.com/yopeso/Taylor/pull/51)
diff --git a/README.md b/README.md
index 29be1b1..d1306f4 100755
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ A tool aimed to increase Swift code quality, by checking for conformance to code
[![Build Status](https://travis-ci.org/yopeso/Taylor.svg?branch=master)](https://travis-ci.org/yopeso/Taylor)
[![codecov.io](https://codecov.io/github/yopeso/Taylor/coverage.svg?branch=master)](https://codecov.io/github/yopeso/Taylor?branch=master)
-[![Release version](https://img.shields.io/badge/release-0.2.2-blue.svg)](https://github.com/yopeso/Taylor/releases/tag/0.2.2)
+[![Release version](https://img.shields.io/badge/release-0.2.3-blue.svg)](https://github.com/yopeso/Taylor/releases/tag/0.2.3)
[![Swift Code](https://img.shields.io/badge/language-swift-orange.svg)](https://github.com/yopeso/Taylor)
[![Platform](https://img.shields.io/badge/platform-osx-yellow.svg)](https://github.com/yopeso/Taylor)
[![License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/yopeso/Taylor/blob/master/LICENSE)
diff --git a/Taylor.xcodeproj/project.pbxproj b/Taylor.xcodeproj/project.pbxproj
index 4287be8..0b50a5b 100755
--- a/Taylor.xcodeproj/project.pbxproj
+++ b/Taylor.xcodeproj/project.pbxproj
@@ -176,6 +176,7 @@
FF5DF6A61CBD23CD00768DFE /* ExtendedComponentExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5DF6A51CBD23CD00768DFE /* ExtendedComponentExtensions.swift */; };
FF5DF6A81CBD23FE00768DFE /* OffsetRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5DF6A71CBD23FE00768DFE /* OffsetRange.swift */; };
FF5DF6AA1CBD24B300768DFE /* FileExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5DF6A91CBD24B300768DFE /* FileExtensions.swift */; };
+ FF5F4E521F70197300F4EA33 /* ExcludesFileReader.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FFDEE7FC1EA56F4200D8A81F /* ExcludesFileReader.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
FFDEE7FD1EA56F4200D8A81F /* ExcludesFileReader.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FFDEE7FC1EA56F4200D8A81F /* ExcludesFileReader.framework */; };
/* End PBXBuildFile section */
@@ -225,6 +226,7 @@
A38166451E15587A0046AAD4 /* SourceKittenFramework.framework in Copy Frameworks */,
A38166461E15587A0046AAD4 /* SWXMLHash.framework in Copy Frameworks */,
A38166471E15587A0046AAD4 /* Yams.framework in Copy Frameworks */,
+ FF5F4E521F70197300F4EA33 /* ExcludesFileReader.framework in Copy Frameworks */,
9475A3231DC8EF630081695B /* TaylorFramework.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
diff --git a/Taylor/Info.plist b/Taylor/Info.plist
index 3786841..a4cca64 100755
--- a/Taylor/Info.plist
+++ b/Taylor/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.2.2
+ 0.2.3
CFBundleSignature
????
CFBundleVersion
diff --git a/TaylorFramework/Taylor/Version.swift b/TaylorFramework/Taylor/Version.swift
index bc0d05b..2af25fe 100755
--- a/TaylorFramework/Taylor/Version.swift
+++ b/TaylorFramework/Taylor/Version.swift
@@ -6,4 +6,4 @@
// Copyright © 2015 YOPESO. All rights reserved.
//
-let version = "0.2.2"
+let version = "0.2.3"