Merge pull request #258 from ABridoux/master

Master to develop
This commit is contained in:
Alexis Bridoux 2021-06-06 17:06:16 +02:00 committed by GitHub
commit 39e48eee72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
}