Skip to content

Commit

Permalink
Updating for release
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Jun 28, 2016
1 parent 62928b5 commit a90dc5b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.21.0-dev
# v0.21.0
* Enhancements
* This is the first release with early support for processes in elixirscript. Creating a process only works currently using `spawn/1`, `spawn_link/1`, and `spawn_monitor/1`. Inside of a process, you can use functions such as `send` and `receive`, along with some defined in the `Process` module. From outside of a process, you can send messages to a process, but you cannot receive a message from a process. Eventually all code will run inside processes and this restriction will naturally lift.
* The `Process` module has been implemented with the following functions:
Expand Down
2 changes: 2 additions & 0 deletions lib/elixir_script/translator/kernel/spawn.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule ElixirScript.Translator.Spawn do
@moduledoc false

alias ESTree.Tools.Builder, as: JS
alias ElixirScript.Translator
alias ElixirScript.Translator.Function
Expand Down
3 changes: 2 additions & 1 deletion lib/elixir_script/translator/kernel/special_forms/receive.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

defmodule ElixirScript.Translator.Receive do
@moduledoc false

alias ESTree.Tools.Builder, as: JS
alias ElixirScript.Translator
alias ElixirScript.Translator.Spawn
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule ElixirScript.Mixfile do
def project do
[
app: :elixir_script,
version: "0.21.0-dev",
version: "0.21.0",
elixir: "~> 1.0",
escript: escript_config,
deps: deps,
Expand Down

0 comments on commit a90dc5b

Please sign in to comment.