diff --git a/Cargo.lock b/Cargo.lock index 4bd8c3b2..235d2b70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,9 +681,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", @@ -1603,7 +1603,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", ] [[package]] @@ -1648,7 +1648,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", "thiserror 1.0.69", ] @@ -1659,7 +1659,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", "thiserror 2.0.17", ] @@ -1757,7 +1757,7 @@ dependencies = [ "anyhow", "async-trait", "futures", - "getrandom 0.2.16", + "getrandom 0.2.17", "http", "hyper", "parking_lot 0.11.2", @@ -1786,7 +1786,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.16", + "getrandom 0.2.17", "libc", "untrusted", "windows-sys 0.52.0", @@ -2099,7 +2099,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "sublime_cli_tools" -version = "0.0.34" +version = "0.0.35" dependencies = [ "anyhow", "chrono", @@ -2131,7 +2131,7 @@ dependencies = [ [[package]] name = "sublime_git_tools" -version = "0.0.16" +version = "0.0.17" dependencies = [ "chrono", "dirs 6.0.0", @@ -2148,7 +2148,7 @@ dependencies = [ [[package]] name = "sublime_pkg_tools" -version = "0.0.25" +version = "0.0.26" dependencies = [ "async-trait", "base64 0.21.7", @@ -3317,6 +3317,6 @@ dependencies = [ [[package]] name = "zmij" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8" +checksum = "ac93432f5b761b22864c774aac244fa5c0fd877678a4c37ebf6cf42208f9c9ec" diff --git a/Cargo.toml b/Cargo.toml index a0c936c4..ff0436dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,9 +33,9 @@ repository = "https://github.com/websublime/workspace-tools" [workspace.dependencies] # Internal crates sublime_standard_tools = { version = "0.0.15", path = "crates/standard" } -sublime_git_tools = { version = "0.0.16", path = "crates/git" } -sublime_pkg_tools = { version = "0.0.25", path = "crates/pkg" } -sublime_cli_tools = { version = "0.0.34", path = "crates/cli" } +sublime_git_tools = { version = "0.0.17", path = "crates/git" } +sublime_pkg_tools = { version = "0.0.26", path = "crates/pkg" } +sublime_cli_tools = { version = "0.0.35", path = "crates/cli" } # Core dependencies async-trait = "0.1.74" diff --git a/crates/cli/CHANGELOG.md b/crates/cli/CHANGELOG.md index ff03c1c6..55dd2042 100644 --- a/crates/cli/CHANGELOG.md +++ b/crates/cli/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.0.35 - 2026-01-12 + +### Bug Fixes + +#### Bump + +- Include archived changesets in git commit + + + ## 0.0.34 - 2026-01-09 ### Bug Fixes diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 54c1f574..d6187fc5 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://docs.rs/sublime_cli" readme = "README.md" keywords = ["cli", "nodejs", "workspace", "tools"] categories = ["development-tools", "command-line-utilities"] -version = "0.0.34" +version = "0.0.35" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/git/CHANGELOG.md b/crates/git/CHANGELOG.md index 719380f5..49df2d75 100644 --- a/crates/git/CHANGELOG.md +++ b/crates/git/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.0.17 - 2026-01-12 + +### Bug Fixes + +#### Bump + +- Include archived changesets in git commit + + + ## 0.0.16 - 2026-01-09 ### Features diff --git a/crates/git/Cargo.toml b/crates/git/Cargo.toml index 3b0901df..60bc177a 100644 --- a/crates/git/Cargo.toml +++ b/crates/git/Cargo.toml @@ -2,7 +2,7 @@ name = "sublime_git_tools" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -version = "0.0.16" +version = "0.0.17" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/pkg/CHANGELOG.md b/crates/pkg/CHANGELOG.md index 43937ed2..a8ee94d9 100644 --- a/crates/pkg/CHANGELOG.md +++ b/crates/pkg/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.0.26 - 2026-01-12 + +### Bug Fixes + +#### Bump + +- Include archived changesets in git commit + + + ## 0.0.25 - 2026-01-09 ### Bug Fixes diff --git a/crates/pkg/Cargo.toml b/crates/pkg/Cargo.toml index 66fd46e5..53bc8ce9 100644 --- a/crates/pkg/Cargo.toml +++ b/crates/pkg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sublime_pkg_tools" -version = "0.0.25" +version = "0.0.26" edition.workspace = true rust-version.workspace = true authors.workspace = true