Skip to content

Commit

Permalink
v0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Nov 14, 2017
1 parent ab931da commit d6e58ae
Show file tree
Hide file tree
Showing 8 changed files with 1,334 additions and 8 deletions.
10 changes: 10 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,29 @@ Neon owes its existence to the contributions of these fine people.
* [Nerijus Arlauskas](https://github.com/Nercury)
* [Tim Blair](https://github.com/tblair)
* [Max Brunsfeld](https://github.com/maxbrunsfeld)
* [Dale Bustad](https://github.com/divmain)
* [Eduard-Mihai Burtescu](https://github.com/eddyb)
* [Gabriel Castro](https://github.com/GabrielCastro)
* [Lin Clark](https://github.com/linclark)
* [Cory Forsyth](https://github.com/bantic)
* [Dave Herman](https://github.com/dherman)
* [Florian Keller](https://github.com/ffflorian)
* [Aleksey Kladov](https://github.com/matklad)
* [Terence Lee](https://github.com/hone)
* [Milan Loveless](https://github.com/MilanLoveless)
* [Darin Morrison](https://github.com/freebroccolo)
* [Martin Muñoz](https://github.com/mmun)
* [Mike Piccolo](https://github.com/mfpiccolo)
* [Robbie Pitts](https://github.com/robbiepitts)
* [Thiago Pontes](https://github.com/thiagopnts)
* [Sean Prashad](https://github.com/SeanPrashad)
* [Antonio Scandurra](https://github.com/as-cii)
* [Edward Shaw](https://github.com/EdShaw)
* [Nathan Sobo](https://github.com/nathansobo)
* [Ingvar Stepanyan](https://github.com/RReverser)
* [Andrew Stucki](https://github.com/andrewstucki)
* [Martin Svanberg](https://github.com/msvbg)
* [Corbin Uselton](https://github.com/corbinu)
* [K.J. Valencik](https://github.com/kjvalencik)
* [Daijiro Wachi](https://github.com/watilde)
* [wangcong](https://github.com/king6cong)
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon"
version = "0.1.20"
version = "0.1.21"
authors = ["Dave Herman <[email protected]>"]
description = "A safe abstraction layer for Node.js."
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ build = "build.rs"
links = "neon-runtime"

[build-dependencies]
neon-build = { version = "=0.1.20", path = "crates/neon-build" }
neon-build = { version = "=0.1.21", path = "crates/neon-build" }

[dev-dependencies]
rustc_version = "0.2"
Expand All @@ -28,4 +28,4 @@ lazy_static = "0.2.8"
[dependencies]
cslice = "0.2"
semver = "0.9.0"
neon-runtime = { version = "=0.1.20", path = "crates/neon-runtime" }
neon-runtime = { version = "=0.1.21", path = "crates/neon-runtime" }
5 changes: 5 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 0.1.21

* Fix a bug that was causing annoying unnecessary rebuilds ([#242](https://github.com/neon-bindings/neon/issues/242)).
* New [API for getting the global object](https://api.neon-bindings.com/neon/scope/trait.scope#method.global) ([#249](https://github.com/neon-bindings/neon/issues/249)).

# Version 0.1.20

* Background task API ([#214](https://github.com/neon-bindings/neon/pull/214)).
Expand Down
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neon-cli",
"version": "0.1.20",
"version": "0.1.21",
"description": "Build and load native Rust/Neon modules.",
"author": "Dave Herman <[email protected]>",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions cli/templates/Cargo.toml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "{{project.name.cargo.internal}}"
crate-type = ["dylib"]

[build-dependencies]
neon-build = "0.1.20"
neon-build = "0.1.21"

[dependencies]
neon = "0.1.20"
neon = "0.1.21"
2 changes: 1 addition & 1 deletion crates/neon-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-build"
version = "0.1.20"
version = "0.1.21"
authors = ["Dave Herman <[email protected]>"]
description = "Build logic required for Neon projects."
repository = "https://github.com/neon-bindings/neon"
Expand Down
2 changes: 1 addition & 1 deletion crates/neon-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-runtime"
version = "0.1.20"
version = "0.1.21"
authors = ["Dave Herman <[email protected]>"]
description = "Exposes Node and V8 C++ API's for use by Neon."
repository = "https://github.com/neon-bindings/neon"
Expand Down
Loading

0 comments on commit d6e58ae

Please sign in to comment.