Skip to content

Commit

Permalink
v0.3.3 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvalencik committed Oct 22, 2019
1 parent 9f159ad commit 845425b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Neon owes its existence to the contributions of these fine people.

* [Reza Akhavan](https://github.com/jedireza)
* [Nerijus Arlauskas](https://github.com/Nercury)
* [Igor Artamonov](https://github.com/splix)
* [Tim Blair](https://github.com/tblair)
* [Max Brunsfeld](https://github.com/maxbrunsfeld)
* [Dale Bustad](https://github.com/divmain)
Expand Down
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.3.2"
version = "0.3.3"
authors = ["Dave Herman <[email protected]>"]
description = "A safe abstraction layer for Node.js."
readme = "README.md"
Expand All @@ -12,7 +12,7 @@ exclude = ["neon.jpg"]
build = "build.rs"

[build-dependencies]
neon-build = { version = "=0.3.2", path = "crates/neon-build" }
neon-build = { version = "=0.3.3", path = "crates/neon-build" }

[dev-dependencies]
lazy_static = "1.4.0"
Expand All @@ -22,7 +22,7 @@ semver = "0.9"
[dependencies]
cslice = "0.2"
semver = "0.9.0"
neon-runtime = { version = "=0.3.2", path = "crates/neon-runtime" }
neon-runtime = { version = "=0.3.3", path = "crates/neon-runtime" }

[features]
default = ["legacy-runtime"]
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.3.3

Hot fix for `neon build` in projects with many dependencies.

# Version 0.3.2

## Bug fixes and Small Features
Expand Down
2 changes: 1 addition & 1 deletion cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.3.2",
"version": "0.3.3",
"description": "Build and load native Rust/Neon modules.",
"author": "Dave Herman <[email protected]>",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions crates/neon-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "neon-build"
version = "0.3.2"
version = "0.3.3"
authors = ["Dave Herman <[email protected]>"]
description = "Build logic required for Neon projects."
repository = "https://github.com/neon-bindings/neon"
license = "MIT/Apache-2.0"
build = "build.rs"

[dependencies]
neon-sys = { version = "=0.3.2", path = "../neon-sys", optional = true }
neon-sys = { version = "=0.3.3", path = "../neon-sys", optional = true }
cfg-if = "0.1.9"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/neon-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "neon-runtime"
version = "0.3.2"
version = "0.3.3"
authors = ["Dave Herman <[email protected]>"]
description = "Bindings to the Node.js native addon API, used by the Neon implementation."
repository = "https://github.com/neon-bindings/neon"
license = "MIT/Apache-2.0"

[dependencies]
cfg-if = "0.1.9"
neon-sys = { version = "=0.3.2", path = "../neon-sys", optional = true }
neon-sys = { version = "=0.3.3", path = "../neon-sys", optional = true }
nodejs-sys = { version = "0.2.0", optional = true }
2 changes: 1 addition & 1 deletion crates/neon-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-sys"
version = "0.3.2"
version = "0.3.3"
authors = ["David Herman <[email protected]>"]
description = "Exposes the low-level V8/NAN C/C++ APIs. Will be superseded by N-API."
edition = "2018"
Expand Down

0 comments on commit 845425b

Please sign in to comment.