From 40c7b48a851b63cac7bf25cb87152f3b4dd3e867 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Tue, 2 Jan 2024 18:21:56 +0100 Subject: [PATCH] Bump version --- Cargo.toml | 2 +- js/Cargo.toml | 2 +- lib/docs/contributing.md | 2 +- python/Cargo.toml | 2 +- scripts/bump.sh | 1 - 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bf46936..f229009 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Idiomatic conversion between URIs and compact URIs (CURIEs)" readme = "README.md" diff --git a/js/Cargo.toml b/js/Cargo.toml index 5583077..cbeeddd 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -15,7 +15,7 @@ categories.workspace = true crate-type = ["cdylib"] [dependencies] -curies = { version = "0.1.0", path = "../lib" } +curies = { version = "0.1.1", path = "../lib" } wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" serde-wasm-bindgen = "0.6" diff --git a/lib/docs/contributing.md b/lib/docs/contributing.md index 5b0727a..46ae7f3 100644 --- a/lib/docs/contributing.md +++ b/lib/docs/contributing.md @@ -182,7 +182,7 @@ for this repository: `PYPI_TOKEN`, `NPM_TOKEN`, `CRATES_IO_TOKEN`, `CODECOV_TOKE 3. Bump the version in the `Cargo.toml` file in folders `lib`, `python`, and `js`: ```bash - ./scripts/bump.sh 0.2.1 + ./scripts/bump.sh 0.1.2 ``` 4. Commit, push, and **create a new release on GitHub**. diff --git a/python/Cargo.toml b/python/Cargo.toml index 8be56c3..948c8b9 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -16,7 +16,7 @@ name = "curies_rs" crate-type = ["cdylib"] [dependencies] -curies = { version = "0.1.0", path = "../lib" } +curies = { version = "0.1.1", path = "../lib" } pyo3 = { version = "0.20", features = ["extension-module"] } pythonize = "0.20" serde = { version = "1.0" } diff --git a/scripts/bump.sh b/scripts/bump.sh index d6b21c1..8a5b730 100755 --- a/scripts/bump.sh +++ b/scripts/bump.sh @@ -10,7 +10,6 @@ fi new_version=$1 files=( "lib/Cargo.toml" - "cli/Cargo.toml" "python/Cargo.toml" "js/Cargo.toml" )