Skip to content

Commit d4646d8

Browse files
committed
Updated README examples
1 parent f015d59 commit d4646d8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.11.0-dev
1+
# v0.11.0
22
* Enhancement
33
* `import` works with all options
44
* Added `JS` module with `new`, `mutate`, `import` macros

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ElixirScript can be used in the following ways:
1616
* If using as part of a project, you can add the following to your deps
1717

1818
```elixir
19-
{:elixir_script, "~> 0.10"}
19+
{:elixir_script, "~> 0.11"}
2020
```
2121

2222
From there you can either use the ElixirScript module directly or the mix command, `mix ex2js`
@@ -168,8 +168,8 @@ A lot of functions in the Kernel module are implemented. The Enum, Atom, List, T
168168

169169

170170
### Example projects
171-
* [todo-elixirscript](https://github.com/bryanjos/example) The TodoMVC app using ElixirScript and Phoenix.
172-
171+
* [phoenix_chat_example](https://github.com/bryanjos/phoenix_chat_example) The Pheonix Chat App using ElixirScript.
172+
* [MobileElixir](https://github.com/bryanjos/MobileElixir) Using ElixirScript with React Native
173173
* [color_bar_spike](https://github.com/bryanjos/color_bar_spike) A canvas drawing example using ElixirScript, React and Delorean
174174

175175
#### Using with Brunch

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule ElixirScript.Mixfile do
44
def project do
55
[
66
app: :elixir_script,
7-
version: "0.11.0-dev",
7+
version: "0.11.0",
88
elixir: "~> 1.0",
99
escript: escript_config,
1010
deps: deps,
@@ -93,7 +93,7 @@ defmodule ElixirScript.Mixfile do
9393

9494
def install(_) do
9595
Mix.Task.run "app.start"
96-
96+
9797
System.cmd("tar", ["-zxvf", "dist/ex2js.tar.gz"])
9898

9999
File.rm_rf!("/usr/local/ex2js")

0 commit comments

Comments
 (0)