Skip to content

Commit

Permalink
v0.16.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jun 17, 2021
1 parent 68b94ac commit a909789
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
- Gleam can now run an Erlang shell without an external build tool.
- Projects without rebar3 can be generated using the `gleam-lib` template.

## v0.16.0-rc3 - 2021-06-17

- New projects are generated using `gleam_stdlib` v0.16.0.

## v0.16.0-rc2 - 2021-06-08

- Gleam now supports alternative patterns in case expressions for the JavaScript target.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gleam"
version = "0.16.0-rc2"
version = "0.16.0-rc3"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2018"
license-file = "LICENCE"
Expand Down
2 changes: 1 addition & 1 deletion src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::io::Write;
use std::path::{Path, PathBuf};
use strum::{Display, EnumString, EnumVariantNames};

const GLEAM_STDLIB_VERSION: &str = "0.15.0";
const GLEAM_STDLIB_VERSION: &str = "0.16.0";
const GLEAM_OTP_VERSION: &str = "0.1.5";
const ERLANG_OTP_VERSION: &str = "23.2";
const PROJECT_VERSION: &str = "0.1.0";
Expand Down

0 comments on commit a909789

Please sign in to comment.