Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.4"
version = "0.1.5"
edition = "2024"
authors = ["ccsync contributors"]
license = "MIT"
Expand Down
11 changes: 11 additions & 0 deletions crates/ccsync-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.5](https://github.com/onsails/ccsync/compare/ccsync-core-v0.1.4...ccsync-core-v0.1.5) - 2025-10-29

### Fixed

- apply pattern matching to relative paths instead of absolute paths

### Other

- standardize config file naming to use .toml extension
- *(deps)* bump the prod-deps group with 4 updates ([#13](https://github.com/onsails/ccsync/pull/13))
6 changes: 6 additions & 0 deletions crates/ccsync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/onsails/ccsync/compare/ccsync-v0.1.4...ccsync-v0.1.5) - 2025-10-29

### Other

- update Cargo.toml dependencies

## [0.1.4](https://github.com/onsails/ccsync/compare/ccsync-v0.1.3...ccsync-v0.1.4) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/ccsync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "ccsync"
path = "src/main.rs"

[dependencies]
ccsync-core = { version = "0.1.4", path = "../ccsync-core" }
ccsync-core = { version = "0.1.5", path = "../ccsync-core" }
clap.workspace = true
anyhow.workspace = true
dialoguer.workspace = true
Expand Down
Loading