diff --git a/RELEASES.md b/RELEASES.md index 65dfdf4..cbe2c0e 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,7 @@ +# Version 0.1.15 + +* Better support for Electron via the artifacts file (#52). + # Version 0.1.14 * Clean up the CLI and allow `neon build` to optionally take module names (#48). diff --git a/package.json b/package.json index 0aa53a4..ac134db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "neon-cli", - "version": "0.1.14", + "version": "0.1.15", "description": "Build and load native Rust/Neon modules.", "author": "Dave Herman ", "repository": { diff --git a/templates/Cargo.toml.hbs b/templates/Cargo.toml.hbs index 1bc31a2..5aa1b8f 100644 --- a/templates/Cargo.toml.hbs +++ b/templates/Cargo.toml.hbs @@ -14,7 +14,7 @@ name = "{{project.name.cargo.internal}}" crate-type = ["dylib"] [build-dependencies] -neon-build = "0.1.14" +neon-build = "0.1.15" [dependencies] -neon = "0.1.14" +neon = "0.1.15"