Skip to content

Commit

Permalink
fix npm publish bump 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Nov 20, 2023
1 parent 54e20eb commit bcccf74
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -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"

Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions 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.
"""
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions 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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion 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)
"""
Expand Down
4 changes: 2 additions & 2 deletions 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
Expand All @@ -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"] }

0 comments on commit bcccf74

Please sign in to comment.