diff --git a/CHANGELOG.md b/CHANGELOG.md
index a6eb82c..1e564af 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,14 @@ The changelog for `MSCircularSlider`. Summarized release notes can be found in t
------------------------
+## 1.3.1 - 05-04-2020
+#### Fixed
+ - The slider moving even when the initial touch is not on the slider (thanks to @endy-s and @MoonshineSG)
+ - Triggering the `endedTrackingWith` delegate method before handle-snapping
+
+#### Changed
+ - Some delegate methods fixed to actually be optional
+
## 1.3.0 - 02-07-2019
#### Added
- An option to bound the handle at 100% (after a given number of revolutions) and 0%, preventing endless looping
diff --git a/MSCircularSlider.podspec b/MSCircularSlider.podspec
index bef3e3b..3e7883b 100755
--- a/MSCircularSlider.podspec
+++ b/MSCircularSlider.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MSCircularSlider'
- s.version = '1.3.0'
+ s.version = '1.3.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ThunderStruct' => 'mohamedshahawy@aucegypt.edu' }
s.summary = 'A full-featured circular slider for iOS applications'
@@ -8,6 +8,7 @@ Pod::Spec.new do |s|
# Source Info
s.platform = :ios, '9.3'
+ s.swift_version = ['4.2', '5.0']
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.3.0" }
s.source_files = 'MSCircularSlider/*.{swift}'
diff --git a/MSCircularSliderExample/MSCircularSliderExample.xcodeproj/project.xcworkspace/xcuserdata/mohamed.xcuserdatad/UserInterfaceState.xcuserstate b/MSCircularSliderExample/MSCircularSliderExample.xcodeproj/project.xcworkspace/xcuserdata/mohamed.xcuserdatad/UserInterfaceState.xcuserstate
index 9e6fff8..a8ac9c2 100644
Binary files a/MSCircularSliderExample/MSCircularSliderExample.xcodeproj/project.xcworkspace/xcuserdata/mohamed.xcuserdatad/UserInterfaceState.xcuserstate and b/MSCircularSliderExample/MSCircularSliderExample.xcodeproj/project.xcworkspace/xcuserdata/mohamed.xcuserdatad/UserInterfaceState.xcuserstate differ
diff --git a/MSCircularSliderExample/MSCircularSliderExample/Base.lproj/Main.storyboard b/MSCircularSliderExample/MSCircularSliderExample/Base.lproj/Main.storyboard
index fcc1255..9634885 100644
--- a/MSCircularSliderExample/MSCircularSliderExample/Base.lproj/Main.storyboard
+++ b/MSCircularSliderExample/MSCircularSliderExample/Base.lproj/Main.storyboard
@@ -36,7 +36,7 @@
-
+
diff --git a/README.md b/README.md
index 9935161..c4a4392 100755
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# MSCircularSlider
-[![Build Status](https://travis-ci.org/ThunderStruct/MSCircularSlider.svg?branch=master)](https://travis-ci.org/ThunderStruct/MSCircularSlider) [![Platform](https://img.shields.io/badge/platform-iOS-lightgrey.svg)](https://github.com/ThunderStruct/MSCircularSlider) [![CocoaPods](https://img.shields.io/badge/pod-1.3.0-blue.svg)](https://cocoapods.org/pods/MSCircularSlider) [![License](https://img.shields.io/cocoapods/l/AFNetworking.svg)](https://github.com/ThunderStruct/MSCircularSlider/blob/master/LICENSE)
+[![Build Status](https://travis-ci.org/ThunderStruct/MSCircularSlider.svg?branch=master)](https://travis-ci.org/ThunderStruct/MSCircularSlider) [![Platform](https://img.shields.io/badge/platform-iOS-lightgrey.svg)](https://github.com/ThunderStruct/MSCircularSlider) [![CocoaPods](https://img.shields.io/badge/pod-1.3.1-blue.svg)](https://cocoapods.org/pods/MSCircularSlider) [![License](https://img.shields.io/cocoapods/l/AFNetworking.svg)](https://github.com/ThunderStruct/MSCircularSlider/blob/master/LICENSE)
A fully `IBDesignable` and `IBInspectable` circular slider for iOS applications