From bcccf74e8cae1805ddb3982f2700022c7a31afee Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Mon, 20 Nov 2023 12:39:56 +0100 Subject: [PATCH] fix npm publish bump 0.0.5 --- .github/workflows/build.yml | 2 +- cli/Cargo.toml | 4 ++-- js/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d76de1b..2f0ed53 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -283,6 +283,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20 + registry-url: 'https://registry.npmjs.org' cache: npm cache-dependency-path: "./js/package.json" @@ -300,7 +301,6 @@ jobs: working-directory: ./js env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} if: github.event_name == 'release' publish_crates: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 57e51b5..e984b94 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-cli" -version = "0.0.4" +version = "0.0.5" description = """ A cross-platform CLI tool written in Rust to sign Nanopublications. """ @@ -14,5 +14,5 @@ homepage.workspace = true categories.workspace = true [dependencies] -nanopub = { version = "0.0.4", path = "../lib" } +nanopub = { version = "0.0.5", path = "../lib" } clap = { version = "4.4.8", features = ["derive"] } diff --git a/js/Cargo.toml b/js/Cargo.toml index c1be0b9..a991b5f 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-js" -version = "0.0.4" +version = "0.0.5" description = "JavaScript bindings for the Nanopub rust toolkit" repository = "https://github.com/vemonet/nanopub-rs/tree/main/js" authors.workspace = true @@ -15,7 +15,7 @@ categories.workspace = true crate-type = ["cdylib"] [dependencies] -nanopub = { version = "0.0.4", path = "../lib" } +nanopub = { version = "0.0.5", path = "../lib" } wasm-bindgen = "0.2" js-sys = "0.3" console_error_panic_hook = "0.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index c74c6e4..307657f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub" -version = "0.0.4" +version = "0.0.5" description = """ A cross-platform Rust library to sign Nanopublications, with bindings to Python and JS (wasm) """ diff --git a/python/Cargo.toml b/python/Cargo.toml index 4803f6c..41afe3f 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-sign" -version = "0.0.4" +version = "0.0.5" description = "Python bindings for the Nanopub rust toolkit" repository = "https://github.com/vemonet/nanopub-rs/tree/main/python" authors.workspace = true @@ -16,5 +16,5 @@ name = "nanopub_sign" crate-type = ["cdylib"] [dependencies] -nanopub = { version = "0.0.4", path = "../lib" } +nanopub = { version = "0.0.5", path = "../lib" } pyo3 = { version = "0.20", features = ["extension-module"] }