Skip to content

Commit 56f270d

Browse files
authored
Release 2.0.0 (revelrylabs#50)
1 parent c10bda9 commit 56f270d

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ be found at [https://hexdocs.pm/nodejs](https://hexdocs.pm/nodejs).
2222
```elixir
2323
def deps do
2424
[
25-
{:nodejs, "~> 1.0"}
25+
{:nodejs, "~> 2.0"}
2626
]
2727
end
2828
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(),

0 commit comments

Comments
 (0)