File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 0.31.1] - 2017-09-27
8+ ### Fixed
9+ - Compiler error when ` receive ` is used as variable name
10+
11+
712## [ 0.31.0] - 2017-09-24
813### Added
914- [ Compiler will now accept a path to Elixir Files to compile] ( https://github.com/elixirscript/elixirscript/issues/420 )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ defmodule ElixirScript.CLI.Test do
1010 test "process help" do
1111 assert capture_io ( fn ->
1212 ElixirScript.CLI . process ( :help )
13- end ) =~ "usage: elixirscript <module> [options]"
13+ end ) =~ "usage: elixirscript <module | path > [options]"
1414 end
1515
1616 test "process version" do
@@ -22,7 +22,7 @@ defmodule ElixirScript.CLI.Test do
2222 test "process unknown" do
2323 assert capture_io ( fn ->
2424 ElixirScript.CLI . process ( { "" , [ unknown: "" ] } )
25- end ) =~ "usage: elixirscript <module> [options]"
25+ end ) =~ "usage: elixirscript <module | path > [options]"
2626 end
2727
2828 test "process input" do
You can’t perform that action at this time.
0 commit comments