diff --git a/.github/release.yml b/.github/release.yml index 9e589bf..6d2898c 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -9,6 +9,9 @@ changelog: - title: "Other Changes" labels: - "*" + exclude: + labels: + - "dependencies" - title: "Dependency Updates" labels: - "dependencies" diff --git a/Cargo.lock b/Cargo.lock index 342d9da..f767091 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1714,7 +1714,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "standard_knowledge" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dyn-clone", "flate2", @@ -1725,7 +1725,7 @@ dependencies = [ [[package]] name = "standard_knowledge_cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "clap", "reqwest", @@ -1737,7 +1737,7 @@ dependencies = [ [[package]] name = "standard_knowledge_js" -version = "0.1.0" +version = "0.1.1" dependencies = [ "console_error_panic_hook", "indicium", @@ -1749,7 +1749,7 @@ dependencies = [ [[package]] name = "standard_knowledge_py" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dyn-clone", "indicium", diff --git a/Cargo.toml b/Cargo.toml index a0f0cf6..c66ffc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = [ "cli", "core", "js", "py"] [workspace.package] -version = "0.1.0" +version = "0.1.1" license = "Apache-2.0" repository = "https://github.com/ioos/standard_knowledge/" readme = "README.md" diff --git a/README.md b/README.md index fd7d5d7..5e33d11 100644 --- a/README.md +++ b/README.md @@ -205,6 +205,11 @@ Knowledge keys: Cargo as manages the Rust components of the project, while Maturin and uv help keep things inline when working from the Python side of things. +### Releasing + +Use `./noxfile.py -s release -- ` to bump the version. +Preferbly in a PR with the changes from the last release included. + ### Rust Testing `cargo test` will run tests in all the workspaces. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9d2e609..3005ee3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -15,7 +15,7 @@ path = "src/main.rs" [dependencies] clap = { version = "4.5.54", features = ["derive"] } serde_yaml_ng = "0.10.0" -standard_knowledge = { path = "../core", version = "0.1.0" } +standard_knowledge = { path = "../core", version = "0.1.1" } reqwest = { version = "0.13", features = ["blocking"] } serde = { version = "1.0.228", features = ["derive"] } diff --git a/js/Cargo.toml b/js/Cargo.toml index e9ad2f8..f52e7aa 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -16,7 +16,7 @@ default = ["console_error_panic_hook"] [dependencies] wasm-bindgen = "0.2.84" -standard_knowledge = { path = "../core", version = "0.1.0" } +standard_knowledge = { path = "../core", version = "0.1.1" } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires diff --git a/py/Cargo.toml b/py/Cargo.toml index 6a7d2fd..d382447 100644 --- a/py/Cargo.toml +++ b/py/Cargo.toml @@ -15,6 +15,6 @@ crate-type = ["cdylib"] [dependencies] pyo3 = "0.29.0" -standard_knowledge = { path = "../core", version = "0.1.0" } +standard_knowledge = { path = "../core", version = "0.1.1" } dyn-clone = "1.0.20" indicium = "0.6.5"