Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Jan 2, 2024
1 parent 79fc2f4 commit 40c7b48
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**.
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
1 change: 0 additions & 1 deletion scripts/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ fi
new_version=$1
files=(
"lib/Cargo.toml"
"cli/Cargo.toml"
"python/Cargo.toml"
"js/Cargo.toml"
)
Expand Down

0 comments on commit 40c7b48

Please sign in to comment.