diff --git a/AUTHORS.md b/AUTHORS.md index 9f49823ae..c8d6f404a 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -39,6 +39,7 @@ Neon owes its existence to the contributions of these fine people. * [Laz](https://github.com/lazops) * [Anton Lazarev](https://github.com/antonok-edm) * [Simon Liang](https://github.com/lhr0909) +* [Matthew Little](https://github.com/zone117x) * [Terence Lee](https://github.com/hone) * [Milan Loveless](https://github.com/MilanLoveless) * [Mikuroさいな](https://github.com/MikuroXina) diff --git a/Cargo.lock b/Cargo.lock index f28a34c28..50cfccdcd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "neon" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "anyhow", "aquamarine", @@ -328,7 +328,7 @@ dependencies = [ [[package]] name = "neon-macros" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "quote", "syn", diff --git a/RELEASES.md b/RELEASES.md index 8f1d7ec98..33f30d66e 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,23 @@ -# (cargo-cp-artifact) 0.1.8 +# Version 1.0.0-alpha.3 -Fixes sending additional arguments on Windows. +## Breaking Changes + +## Improvements + +* Added `JsBigInt` (https://github.com/neon-bindings/neon/pull/963). +* Added UTF-16 functions to `JsString` (https://github.com/neon-bindings/neon/pull/944). + +## Bug Fixes + +* Fix a scope leak in release builds (https://github.com/neon-bindings/neon/pull/952). + +## Docs + +* Examples added for many types ((https://github.com/neon-bindings/neon/pull/942)). + +### `cargo-cp-artifact` + +`0.1.8` fixes sending additional arguments on Windows (https://github.com/neon-bindings/neon/pull/972). # Version 1.0.0-alpha.2 diff --git a/crates/neon-macros/Cargo.toml b/crates/neon-macros/Cargo.toml index 30958fed0..34d4b5c1b 100644 --- a/crates/neon-macros/Cargo.toml +++ b/crates/neon-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neon-macros" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Dave Herman "] description = "Procedural macros supporting Neon" repository = "https://github.com/neon-bindings/neon" diff --git a/crates/neon/Cargo.toml b/crates/neon/Cargo.toml index 2e5aceb27..5e911ce39 100644 --- a/crates/neon/Cargo.toml +++ b/crates/neon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neon" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Dave Herman "] description = "A safe abstraction layer for Node.js." readme = "../../README.md" @@ -27,7 +27,7 @@ libloading = "0.7.3" semver = "1" smallvec = "1.4.2" once_cell = "1.10.0" -neon-macros = { version = "=1.0.0-alpha.2", path = "../neon-macros" } +neon-macros = { version = "=1.0.0-alpha.3", path = "../neon-macros" } aquamarine = { version = "0.1.11", optional = true } easy-cast = { version = "0.5.1", optional = true } doc-comment = { version = "0.3.3", optional = true } diff --git a/test/electron/Cargo.toml b/test/electron/Cargo.toml index 1fb8b0350..ac5f57b48 100644 --- a/test/electron/Cargo.toml +++ b/test/electron/Cargo.toml @@ -9,5 +9,5 @@ license = "MIT/Apache-2.0" crate-type = ["cdylib"] [dependencies.neon] -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" path = "../../crates/neon" diff --git a/test/napi/Cargo.toml b/test/napi/Cargo.toml index 99db78d17..939aa7e9a 100644 --- a/test/napi/Cargo.toml +++ b/test/napi/Cargo.toml @@ -15,6 +15,6 @@ once_cell = "1" tokio = { version = "1", features = ["rt-multi-thread"] } [dependencies.neon] -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" path = "../../crates/neon" features = ["futures", "napi-experimental", "external-buffers"]