From b05d6c2de7e7c00691d1277284e8f27b0bb937be Mon Sep 17 00:00:00 2001 From: JohnnyMorganz Date: Tue, 15 Jun 2021 18:16:34 +0100 Subject: [PATCH] v0.9.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16e4e035..88dcc284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.9.0] - 2021-06-15 ### Added - CLI will now look for `stylua.toml` and its hidden counterpart, `.stylua.toml`. ([#145](https://github.com/JohnnyMorganz/StyLua/issues/145)) - Added CLI flag `--search-parent-directories`. If enabled, we will look in parent directories for a configuration file, or look in `$XDG_CONFIG_HOME` or `$XDG_CONFIG_HOME/stylua`. ([#127](https://github.com/JohnnyMorganz/StyLua/issues/127), [#146](https://github.com/JohnnyMorganz/StyLua/issues/146)) diff --git a/Cargo.lock b/Cargo.lock index 3303ab37..1576e8d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -823,7 +823,7 @@ dependencies = [ [[package]] name = "stylua" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "console", diff --git a/Cargo.toml b/Cargo.toml index ecc4029a..acc25574 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylua" -version = "0.8.1" +version = "0.9.0" authors = ["JohnnyMorganz "] description = "A code formatter for Lua" license = "MPL-2.0" diff --git a/README.md b/README.md index 91a6e846..a588ccad 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ cargo install stylua --features lua52 ### With [Foreman](https://github.com/Roblox/foreman) StyLua can be installed using foreman. Add the following to your `foreman.toml` file: ```toml -stylua = { source = "JohnnyMorganz/stylua", version = "0.8.1" } +stylua = { source = "JohnnyMorganz/stylua", version = "0.9.0" } ``` ### Using the VSCode Extension