Skip to content

Commit bacc382

Browse files
author
Kyle Jessup
committed
2 parents 4d5361b + ae7469d commit bacc382

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<p align="center">
2525
<a href="https://developer.apple.com/swift/" target="_blank">
26-
<img src="https://img.shields.io/badge/Swift-4.0-orange.svg?style=flat" alt="Swift 4.0">
26+
<img src="https://img.shields.io/badge/Swift-4.1-orange.svg?style=flat" alt="Swift 4.1">
2727
</a>
2828
<a href="https://developer.apple.com/swift/" target="_blank">
2929
<img src="https://img.shields.io/badge/Platforms-OS%20X%20%7C%20Linux%20-lightgray.svg?style=flat" alt="Platforms OS X | Linux">
@@ -43,7 +43,7 @@ This project provides a Swift wrapper around the MySQL client library, enabling
4343

4444
This package builds with Swift Package Manager and is part of the [Perfect](https://github.com/PerfectlySoft/Perfect) project. It was written to be stand-alone and so does not require PerfectLib or any other components.
4545

46-
Ensure you have installed and activated the latest Swift 4.0 tool chain.
46+
Ensure you have installed and activated the latest Swift 4.1.2 tool chain.
4747

4848
## macOS Build Notes
4949

@@ -76,7 +76,11 @@ swift package generate-xcodeproj
7676
```
7777
After this you have to set the path for libraries again.
7878

79+
⚠️**NOTE**⚠️ The last mysql homebrew version that Perfect currently supports is 5.7.12, so please try this command when some missing type issues were found on your build:
7980

81+
```
82+
$ brew install --v5.7.21 mysql && brew switch mysql 5.7.21
83+
```
8084

8185
## Linux Build Notes
8286

@@ -93,7 +97,7 @@ Please note that Ubuntu 14 defaults to including a version of MySQL client which
9397
Add this project as a dependency in your Package.swift file.
9498

9599
``` swift
96-
.Package(url:"https://github.com/PerfectlySoft/Perfect-MySQL.git", majorVersion: 3)
100+
.package(url:"https://github.com/PerfectlySoft/Perfect-MySQL.git", from: "3.0.0")
97101
```
98102

99103
## Documentation

0 commit comments

Comments
 (0)