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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ jobs:
- name: Run tests (release)
run: cargo test --release --all-features --all-targets

- name: Smoke test cargo install
env:
CARGO_TARGET_DIR: /tmp/capsync-install-target
run: cargo install --path . --locked --force

- name: Run Clippy
run: cargo clippy --all-features --all-targets

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.2.3] - 2026-04-14

### Changed

- Ubuntu CI now smoke-tests `cargo install --path . --locked --force`, covering the packaged install path in addition to normal build/test jobs
- The install smoke test now runs across the current CI matrix environments instead of only Linux
- Fix build in Linux system

## [2.2.2] - 2026-04-12

### Added
Expand Down
10 changes: 5 additions & 5 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.2"
version = "2.2.3"
edition = "2024"
authors = ["pa1nark"]
description = "A simple tool to sync your AI coding skills across different tools."
Expand Down
Loading