Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvalencik committed Aug 22, 2019
1 parent d10e78b commit 7b244df
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon"
version = "0.3.0"
version = "0.3.1"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "A safe abstraction layer for Node.js."
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ build = "build.rs"
links = "neon-runtime"

[build-dependencies]
neon-build = { version = "=0.3.0", path = "crates/neon-build" }
neon-build = { version = "=0.3.1", path = "crates/neon-build" }

[dev-dependencies]
rustc_version = "0.2"
Expand All @@ -28,7 +28,7 @@ lazy_static = "0.2.8"
[dependencies]
cslice = "0.2"
semver = "0.9.0"
neon-runtime = { version = "=0.3.0", path = "crates/neon-runtime" }
neon-runtime = { version = "=0.3.1", path = "crates/neon-runtime" }

[workspace]
members = ["crates/neon-build", "crates/neon-runtime"]
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.3.1

* Build v0.3 project templates by default in the CLI

# Version 0.3

## Breaking Changes
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.3.0",
"version": "0.3.1",
"description": "Build and load native Rust/Neon modules.",
"author": "Dave Herman <david.herman@gmail.com>",
"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 @@ -15,7 +15,7 @@ name = "{{project.name.cargo.internal}}"
crate-type = ["cdylib"]

[build-dependencies]
neon-build = "0.2.0"
neon-build = "0.3.1"

[dependencies]
neon = "0.2.0"
neon = "0.3.1"
2 changes: 1 addition & 1 deletion crates/neon-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-build"
version = "0.3.0"
version = "0.3.1"
authors = ["Dave Herman <david.herman@gmail.com>"]
description = "Build logic required for Neon projects."
repository = "https://github.com/neon-bindings/neon"
Expand Down
2 changes: 1 addition & 1 deletion crates/neon-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neon-runtime"
version = "0.3.0"
version = "0.3.1"
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"
Expand Down
2 changes: 1 addition & 1 deletion dev/commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ git commit -a -m "v$VERSION" || exit $?
git push

curl \
-u dherman \
-u $1 \
--request POST \
--data '{"tag_name":"'"$VERSION"'","target_commitish":"master","name":"'"v$VERSION"'","body":"","draft":false,"prerelease":true}' \
https://api.github.com/repos/neon-bindings/neon/releases

0 comments on commit 7b244df

Please sign in to comment.