Skip to content

Commit

Permalink
fix npm publish bump 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Nov 20, 2023
1 parent 270f479 commit 3d3a0e5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-cli"
version = "0.0.5"
version = "0.0.6"
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.5", path = "../lib" }
nanopub = { version = "0.0.6", path = "../lib" }
clap = { version = "4.4.8", features = ["derive"] }
4 changes: 2 additions & 2 deletions js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-js"
version = "0.0.5"
version = "0.0.6"
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.5", path = "../lib" }
nanopub = { version = "0.0.6", path = "../lib" }
wasm-bindgen = "0.2"
js-sys = "0.3"
console_error_panic_hook = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions js/build_package.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pkg.bugs = {
pkg.collaborators = undefined;
pkg.repository = {
type: "git",
url: "https://github.com/vemonet/nanopub-rs.git",
url: "git+https://github.com/vemonet/nanopub-rs.git",
directory: "js",
};
fs.writeFileSync("./pkg/package.json", JSON.stringify(pkg, null, 2));
fs.writeFileSync("./pkg/package.json", JSON.stringify(pkg, null, 2));
4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/vemonet/nanopub-rs/tree/main/js"
"url": "git+https://github.com/vemonet/nanopub-rs.git"
},
"files": [
"*.{js,wasm,d.ts}"
Expand All @@ -24,7 +24,7 @@
"test": "wasm-pack build --debug --target nodejs && mocha",
"build": "rm -rf pkg && wasm-pack build --release --target web --out-name web && mv pkg pkg-web && wasm-pack build --release --target nodejs --out-name node && mv pkg pkg-node && node build_package.js && rm -r pkg-web && rm -r pkg-node",
"start": "http-server ./",
"release": "npm run build && npm publish ./pkg",
"release": "npm run build && npm publish ./pkg --access public",
"pack": "npm run build && npm pack ./pkg"
},
"standard": {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub"
version = "0.0.5"
version = "0.0.6"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-sign"
version = "0.0.5"
version = "0.0.6"
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.5", path = "../lib" }
nanopub = { version = "0.0.6", path = "../lib" }
pyo3 = { version = "0.20", features = ["extension-module"] }

0 comments on commit 3d3a0e5

Please sign in to comment.