diff --git a/README.md b/README.md index ae750817..257bb6a5 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,15 @@ You can use a library for each format. But I am not aware today of a library tha ### Using a generic text-processing tool Don't get me wrong, **awk** is a wonderful tool. It can do so many things. But it is not that easy to learn. And you have to find a way to parse each different format. **Scout** is really easy to use, as we will see. -### Syntax highlighting +## Syntax highlighting Starting from 1.1.0, Scout will highlight the output when reading or outputting (with the verbose flag) a dictionary or an array value. This is done with the [Lux](https://github.com/ABridoux/lux) library. You can try it with the following command. ```bash curl --silent "https://api.github.com/repos/ABridoux/scout/releases/latest" | scout ``` +![](Resources/syntax-highlight.png) + ## How to use it ### Command Line diff --git a/Resources/syntax-highlight.png b/Resources/syntax-highlight.png new file mode 100644 index 00000000..28428c88 Binary files /dev/null and b/Resources/syntax-highlight.png differ diff --git a/Sources/Scout/Constants/Version.swift b/Sources/Scout/Constants/Version.swift index ce98b7d2..4e4ebf74 100644 --- a/Sources/Scout/Constants/Version.swift +++ b/Sources/Scout/Constants/Version.swift @@ -1,3 +1,3 @@ public struct Version { - public static let current = "1.0.2" + public static let current = "1.1.0" }