Prepare for release

This commit is contained in:
Alexis Bridoux 2021-06-06 16:46:46 +02:00
parent b5e433b918
commit 4e4860e0be
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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"
}