Skip to content

Commit

Permalink
Merge pull request #984 from neon-bindings/kv/1.0.0-alpha.3
Browse files Browse the repository at this point in the history
1.0.0-alpha.3
  • Loading branch information
kjvalencik committed Apr 14, 2023
2 parents a40c012 + 35721ea commit 421a151
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

21 changes: 19 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/neon-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-macros"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Dave Herman <[email protected]>"]
description = "Procedural macros supporting Neon"
repository = "https://github.com/neon-bindings/neon"
Expand Down
4 changes: 2 additions & 2 deletions crates/neon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
authors = ["Dave Herman <[email protected]>"]
description = "A safe abstraction layer for Node.js."
readme = "../../README.md"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion test/electron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion test/napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 421a151

Please sign in to comment.