diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 155c3d6..792881a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-cli" -version = "0.0.13" +version = "0.0.14" description = """ A cross-platform CLI tool written in Rust to sign Nanopublications. """ @@ -14,7 +14,7 @@ homepage.workspace = true categories.workspace = true [dependencies] -nanopub = { version = "0.0.13", path = "../lib" } +nanopub = { version = "0.0.14", path = "../lib" } clap = { version = "4.4", features = ["derive"] } clap_complete = "4.4" tokio = { version = "1.34", features = ["macros", "rt-multi-thread"] } diff --git a/js/Cargo.toml b/js/Cargo.toml index 304dd33..dc172d4 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-js" -version = "0.0.13" +version = "0.0.14" 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.13", path = "../lib" } +nanopub = { version = "0.0.14", path = "../lib" } wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" serde-wasm-bindgen = "0.6" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 6fb8b5a..52d7ab1 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub" -version = "0.0.13" +version = "0.0.14" 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 27191dc..d3db274 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nanopub-sign" -version = "0.0.13" +version = "0.0.14" description = "Python bindings for the Nanopub rust toolkit" repository = "https://github.com/vemonet/nanopub-rs/tree/main/python" authors.workspace = true @@ -16,7 +16,7 @@ name = "nanopub_sign" crate-type = ["cdylib"] [dependencies] -nanopub = { version = "0.0.13", path = "../lib" } +nanopub = { version = "0.0.14", path = "../lib" } pyo3 = { version = "0.20", features = ["extension-module"] } pyo3-asyncio = "0.20" tokio = { version = "1.34", features = ["rt-multi-thread"] } diff --git a/scripts/bump.sh b/scripts/bump.sh index 1361f3e..8ad6a13 100755 --- a/scripts/bump.sh +++ b/scripts/bump.sh @@ -24,3 +24,5 @@ for file in "${files[@]}"; do echo "⚠️ File not found: $file" fi done + +gmsg "🏷️ Bump to $new_version" || true