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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.2.2] - 2026-04-12

### Added

- Shared `git` transport plumbing for clone/install flows, centralizing repository clone, remote-branch detection, and credential callback handling

### Changed

- `capsync clone` and `capsync install` now use the same low-level git transport layer instead of keeping duplicate git plumbing in service-specific modules
- The binary entrypoint now calls into the library crate directly, removing duplicate module declarations and duplicate unit-test execution during validation

### Fixed

- Public GitHub clone/install flows now honor git2 credential callbacks consistently, avoiding `authentication required but no callback set` failures in environments that rewrite HTTPS remotes to SSH or otherwise require transport auth negotiation

## [2.2.1] - 2026-04-12

- Darwin release builds now vendor `libgit2` and OpenSSL through `git2`, avoiding macOS OpenSSL discovery failures during tagged release builds
Expand Down
6 changes: 3 additions & 3 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
@@ -1,6 +1,6 @@
[package]
name = "capsync"
version = "2.2.1"
version = "2.2.2"
edition = "2024"
authors = ["pa1nark"]
description = "A simple tool to sync your AI coding skills across different tools."
Expand Down
Loading