diff --git a/Cargo.lock b/Cargo.lock index 156128b..4c39b3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,7 +125,7 @@ dependencies = [ [[package]] name = "ccsync" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "assert_cmd", @@ -138,7 +138,7 @@ dependencies = [ [[package]] name = "ccsync-core" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "dirs", diff --git a/Cargo.toml b/Cargo.toml index 0be8279..3713ed8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.1.5" +version = "0.1.6" edition = "2024" authors = ["ccsync contributors"] license = "MIT" diff --git a/crates/ccsync-core/CHANGELOG.md b/crates/ccsync-core/CHANGELOG.md index 6ec4b75..dd36f72 100644 --- a/crates/ccsync-core/CHANGELOG.md +++ b/crates/ccsync-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/onsails/ccsync/compare/ccsync-core-v0.1.5...ccsync-core-v0.1.6) - 2025-11-22 + +### Added + +- implement whole-directory skill syncing + ## [0.1.5](https://github.com/onsails/ccsync/compare/ccsync-core-v0.1.4...ccsync-core-v0.1.5) - 2025-10-29 ### Fixed diff --git a/crates/ccsync/CHANGELOG.md b/crates/ccsync/CHANGELOG.md index 078b68b..81f93ba 100644 --- a/crates/ccsync/CHANGELOG.md +++ b/crates/ccsync/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/onsails/ccsync/compare/ccsync-v0.1.5...ccsync-v0.1.6) - 2025-11-22 + +### Added + +- implement whole-directory skill syncing + ## [0.1.5](https://github.com/onsails/ccsync/compare/ccsync-v0.1.4...ccsync-v0.1.5) - 2025-10-29 ### Other diff --git a/crates/ccsync/Cargo.toml b/crates/ccsync/Cargo.toml index eb4d4bf..4cda43f 100644 --- a/crates/ccsync/Cargo.toml +++ b/crates/ccsync/Cargo.toml @@ -14,7 +14,7 @@ name = "ccsync" path = "src/main.rs" [dependencies] -ccsync-core = { version = "0.1.5", path = "../ccsync-core" } +ccsync-core = { version = "0.1.6", path = "../ccsync-core" } clap.workspace = true anyhow.workspace = true dialoguer.workspace = true