Skip to content

Commit

Permalink
[1.1.0] Update to swift 5
Browse files Browse the repository at this point in the history
  • Loading branch information
shial4 committed Mar 26, 2019
1 parent 8745768 commit 857790f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2
5.0
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ os:
language: generic
sudo: required
dist: trusty
osx_image: xcode10
osx_image: xcode10.2
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
script:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<a href="http://swift.org">
<img src="https://img.shields.io/badge/Swift-4.0-brightgreen.svg" alt="Language" />
<img src="https://img.shields.io/badge/Swift-5.0-brightgreen.svg" alt="Language" />
</a>
<a href="https://raw.githubusercontent.com/shial4/SLLog/master/LICENSE">
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License" />
Expand Down Expand Up @@ -34,7 +34,7 @@ SLLog is a simple yet elegant swift logger. Allows you to log content to file, c

Add the following dependency to your `Package.swift` file:
```swift
.package(url: "https://github.com/SLLog/SLLog", from: "1.0.0"),
.package(url: "https://github.com/SLLog/SLLog", from: "1.1.0"),
```

## 💊 How To Start
Expand Down
2 changes: 1 addition & 1 deletion Sources/SLLog/SLLog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class SLLog {
}

public extension SLLog {
public enum LogType: Int, CustomStringConvertible {
enum LogType: Int, CustomStringConvertible {
public var description: String {
switch self {
case .verbose:
Expand Down

0 comments on commit 857790f

Please sign in to comment.