File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,3 +4,12 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ 2.0.0]
9+
10+ ### Added
11+ - support for GenServer name registration to support multiple supervisors
12+
13+ ### Fixed
14+ - ` Task.async ` and ` Task.await ` caller leaks with timeouts and worker crash
15+ - ` console.* ` calls in JavaScript code no longer causes workers to crash
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ be found at [https://hexdocs.pm/nodejs](https://hexdocs.pm/nodejs).
2222``` elixir
2323def deps do
2424 [
25- {:nodejs , " ~> 1 .0" }
25+ {:nodejs , " ~> 2 .0" }
2626 ]
2727end
2828```
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule NodeJS.MixProject do
44 def project do
55 [
66 app: :nodejs ,
7- version: "1.1 .0" ,
7+ version: "2.0 .0" ,
88 elixir: "~> 1.6" ,
99 start_permanent: Mix . env ( ) == :prod ,
1010 deps: deps ( ) ,
You can’t perform that action at this time.
0 commit comments