Skip to content

Commit

Permalink
Merge pull request #985 from neon-bindings/kv/v1.0.0-alpha.4
Browse files Browse the repository at this point in the history
1.0.0-alpha.4
  • Loading branch information
kjvalencik authored Apr 14, 2023
2 parents 32802cc + 5854a5f commit 69e70ef
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
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.

4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 1.0.0-alpha.4

Patch to enable new features flags in docs.rs.

# Version 1.0.0-alpha.3

## Breaking Changes
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.3"
version = "1.0.0-alpha.4"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "Procedural macros supporting Neon"
repository = "https://github.com/neon-bindings/neon"
Expand Down
6 changes: 4 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.3"
version = "1.0.0-alpha.4"
authors = ["Dave Herman <david.herman@gmail.com>"]
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.3", path = "../neon-macros" }
neon-macros = { version = "=1.0.0-alpha.4", 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 Expand Up @@ -92,7 +92,9 @@ doc-dependencies = ["doc-comment", "aquamarine", "easy-cast"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
features = [
"external-buffers",
"futures",
"napi-experimental",
"doc-dependencies",
"sys",
]
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.3"
version = "1.0.0-alpha.4"
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.3"
version = "1.0.0-alpha.4"
path = "../../crates/neon"
features = ["futures", "napi-experimental", "external-buffers"]

0 comments on commit 69e70ef

Please sign in to comment.