Skip to content

Commit

Permalink
v0.1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Nov 24, 2017
1 parent 0fa3545 commit 2277e94
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "neon"
version = "0.1.21"
authors = ["Dave Herman <dherman@mozilla.com>"]
version = "0.1.22"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "A safe abstraction layer for Node.js."
readme = "README.md"
documentation = "https://api.neon-bindings.com/neon/index.html"
Expand All @@ -19,7 +19,7 @@ build = "build.rs"
links = "neon-runtime"

[build-dependencies]
neon-build = { version = "=0.1.21", path = "crates/neon-build" }
neon-build = { version = "=0.1.22", 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.21", path = "crates/neon-runtime" }
neon-runtime = { version = "=0.1.22", path = "crates/neon-runtime" }
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.1.22

* Reinstate `JsInteger` (although it's deprecated) for now, to be removed in 0.2. (#279)

# Version 0.1.21

* Fix a bug that was causing annoying unnecessary rebuilds ([#242](https://github.com/neon-bindings/neon/issues/242)).
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.21",
"version": "0.1.22",
"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.21"
neon-build = "0.1.22"

[dependencies]
neon = "0.1.21"
neon = "0.1.22"
4 changes: 2 additions & 2 deletions crates/neon-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "neon-build"
version = "0.1.21"
authors = ["Dave Herman <dherman@mozilla.com>"]
version = "0.1.22"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "Build logic required for Neon projects."
repository = "https://github.com/neon-bindings/neon"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/neon-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "neon-runtime"
version = "0.1.21"
authors = ["Dave Herman <dherman@mozilla.com>"]
version = "0.1.22"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "Exposes Node and V8 C++ API's for use by Neon."
repository = "https://github.com/neon-bindings/neon"
license = "MIT/Apache-2.0"
Expand Down

0 comments on commit 2277e94

Please sign in to comment.