diff --git a/CHANGELOG.md b/CHANGELOG.md index 722a11be539..ad05d7be63c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ - Gleam can now run eunit without an external build tool. - Gleam can now run an Erlang shell without an external build tool. +## v0.11.1 - 2020-08-31 + - The formatter style has been improved to render function type arguments on a single line when possible, even if the return type will not fit on a single line. diff --git a/Cargo.lock b/Cargo.lock index e30e236d0f9..e1cf8f5cdc3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -539,7 +539,7 @@ dependencies = [ [[package]] name = "gleam" -version = "0.12.0-dev" +version = "0.11.1" dependencies = [ "askama 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 0b39dfc4e3d..9327cb2d682 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gleam" -version = "0.12.0-dev" +version = "0.11.1" authors = ["Louis Pilfold "] edition = "2018"