From e02bda46c1dfed6dc3abf9d74b102c2ab5dd27cb Mon Sep 17 00:00:00 2001 From: LongYinan Date: Wed, 30 Dec 2020 00:56:08 +0800 Subject: [PATCH] 1.0.0 --- build/Cargo.toml | 2 +- cli/package.json | 2 +- napi-derive/Cargo.toml | 2 +- napi/Cargo.toml | 6 +++--- sys/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build/Cargo.toml b/build/Cargo.toml index 8bc566cf..6315b305 100644 --- a/build/Cargo.toml +++ b/build/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "napi-build" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "1.0.0-alpha.0" +version = "1.0.0" [dependencies] cfg-if = "1.0" diff --git a/cli/package.json b/cli/package.json index b80152a3..e11b9b8e 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@napi-rs/cli", - "version": "1.0.0-alpha.14", + "version": "1.0.0", "description": "Cli tools for napi-rs", "keywords": ["cli", "rust", "napi", "n-api", "neon"], "author": "LongYinan ", diff --git a/napi-derive/Cargo.toml b/napi-derive/Cargo.toml index 2e17885f..7e7e6486 100644 --- a/napi-derive/Cargo.toml +++ b/napi-derive/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "napi-derive" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "1.0.0-alpha.0" +version = "1.0.0" [dependencies] proc-macro2 = "1.0" diff --git a/napi/Cargo.toml b/napi/Cargo.toml index 25aa9895..ccc5e80d 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "napi" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "1.0.0-alpha.11" +version = "1.0.0" [features] default = ["napi3"] # for most NodeJS users @@ -23,7 +23,7 @@ serde-json = ["serde", "serde_json"] tokio_rt = ["futures", "tokio", "once_cell"] [dependencies] -napi-sys = {version = "1.0.0-alpha.0", path = "../sys"} +napi-sys = {version = "1", path = "../sys"} [target.'cfg(windows)'.dependencies] winapi = "0.3.9" @@ -54,7 +54,7 @@ optional = true version = "1" [build-dependencies] -napi-build = {version = "1.0.0-alpha.0", path = "../build"} +napi-build = {version = "1", path = "../build"} [package.metadata.docs.rs] all-features = true diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 4b679526..95705f92 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "napi-sys" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "1.0.0-alpha.1" +version = "1.0.0" [features] napi1 = []