Prepare for release

This commit is contained in:
Alexis Bridoux 2021-08-01 11:28:32 +02:00
parent d8b02a2b45
commit 7ed663eee6
3 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. `Scout` adheres to [Semantic Versioning](http://semver.org).
---
## [4.0.4]( https://github.com/ABridoux/scout/tree/4.0.4) (01/08/2021)
### Changed
- Bumped Swift version to 5.4
- Added list version requirements in the Readme [#251]
### Fixed
- tvOS version requirement [#263]
## [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]

View File

@ -42,6 +42,7 @@ Supported formats:
- XML
#### Minimum requirements
- Swift: 5.4+
- macOS: 10.13+
- iOS: 10.0+
- tvOS: 10.0+

View File

@ -4,5 +4,5 @@
// MIT license, see LICENSE file for details
public enum ScoutVersion {
public static let current = "4.0.3"
public static let current = "4.0.4"
}