Skip to content

Commit 695451d

Browse files
committed
Removed dev status from version
1 parent 7d252e9 commit 695451d

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
# v0.14.0-dev
1+
# v0.14.0
22
* Enhancements
33
* Structs are now translated into classes
44
* Structs and Tuples now match on their types
5-
* Can now match on JavaScript classes
5+
* Can now match on JavaScript classes. Works just like matching on structs:
6+
```elixir
7+
def my_func(%HTMLElement{id: "myId"})
8+
```
69
* Can now implement protocols using JavaScript types
10+
```elixir
11+
defimpl MyProtocol, for: HTMLElement
12+
```
713
* Added virtual-dom JavaScript library
814
* Added ElixirScript.Html module for defining a virtual-dom tree
915
* Added ElixirScript.VDom module for manipulating the virtual-dom tree created
1016
using the ElixirScript.Html module
17+
* Added ElixirScript.View module for handling view state and rendering virtual-dom
1118
* Added `stdlib_path` compiler option to specify the es6 path to the standard library.
1219
If used, elixir.js will not be exported with the compiled modules
1320
* Moved non-elixir JavaScript code into `core` es6 module. This will hopefully
@@ -149,7 +156,7 @@
149156
* Logger
150157

151158
* Implemented language features:
152-
* All primatives except bitstrings
159+
* All primitives except bitstrings
153160
* defmodule
154161
* import, alias, and require
155162
* case, cond, if

mix.exs

Lines changed: 1 addition & 1 deletion
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.14.0-dev",
7+
version: "0.14.0",
88
elixir: "~> 1.0",
99
escript: escript_config,
1010
deps: deps,

priv/elixir.js

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)