Skip to content

Commit

Permalink
v0.11.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 22, 2020
1 parent 584ffba commit 1ee6118
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v0.11.0-rc1 - 2020-08-22

- Gleam can now compile Gleam projects without an external build tool.
- Gleam can now run eunit without an external build tool.
Expand Down Expand Up @@ -42,6 +42,7 @@
in a more compact style.
- Gleam now supports hex, octal, and binary literals.
- Rebar3 hex packages now include `gleam.toml` and `gen`.
- Newly generated projects use stdlib v0.11.0.

## v0.10.1 - 2020-07-15

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.11.0-dev"
version = "0.11.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ekidd/rust-musl-builder:1.44.0 as build
FROM ekidd/rust-musl-builder:stable as build

# Build
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ fn rebar_config(insert: &str) -> String {
{{project_plugins, [rebar_gleam]}}.
{{deps, [
{{gleam_stdlib, "0.10.1"}}
{{gleam_stdlib, "0.11.0"}}
]}}.
"#,
insert
Expand Down

0 comments on commit 1ee6118

Please sign in to comment.