From 4e4860e0be3414d2acc6b4af622e1c5639890f65 Mon Sep 17 00:00:00 2001 From: Alexis Bridoux Date: Sun, 6 Jun 2021 16:46:46 +0200 Subject: [PATCH] Prepare for release --- CHANGELOG.md | 5 +++++ Sources/Scout/Constants/ScoutVersion.swift | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7174849..d514caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. `Scout` adheres to [Semantic Versioning](http://semver.org). --- +## [4.0.3]( https://github.com/ABridoux/scout/tree/4.0.3) (06/06/2021) +### Fixed +- Jaro-Winkler crash when comparing two strings of single characters. [#253] +- `computeIndex(from:arrayCount:)` fixed empty arrays and 0 index [#254] + ## [4.0.2](https://github.com/ABridoux/scout/tree/4.0.2) (08/05/2021) ### Changed - Removed useless `indirect` attribute on `ExplorerValue` enum. diff --git a/Sources/Scout/Constants/ScoutVersion.swift b/Sources/Scout/Constants/ScoutVersion.swift index 9e86daa..71d2c5b 100644 --- a/Sources/Scout/Constants/ScoutVersion.swift +++ b/Sources/Scout/Constants/ScoutVersion.swift @@ -4,5 +4,5 @@ // MIT license, see LICENSE file for details public enum ScoutVersion { - public static let current = "4.0.2" + public static let current = "4.0.3" }