Skip to content

Commit

Permalink
v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jul 1, 2020
1 parent c360789 commit 6feb72a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,19 @@
- Gleam can now compile Gleam projects without an external build tool.
- Gleam can now run eunit without an external build tool.
- Gleam can now run an Erlang shell without an external build tool.
- Bugfixes:
- Fixed a bug where variables names would be incorrectly generated when using
alternative patterns.
- Discarding variables inside bitstring matches now works properly

# v0.10.0 - 2020-07-01

#### [Release Blog Post](https://lpil.uk/blog/gleam-v0.10-released/)

- Newly generated projects use stdlib v0.10.1.
- Fixed a bug where discards inside bit string patterns generated invalid
code.

# v0.10.0-rc2 - 2020-06-30

- Fixed a bug where variables names would be incorrectly generated when using
alternative patterns.

# v0.10.0-rc1 - 2020-06-29

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.10.0-rc2"
version = "0.10.0"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2018"

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

0 comments on commit 6feb72a

Please sign in to comment.