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
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,15 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: false

ci-gate:
name: CI Gate
if: always()
needs: [check, fmt, clippy, test, docs, security, coverage]
runs-on: ubuntu-latest
steps:
- run: |
if [[ "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}" == "true" ]]; then
echo "::error::One or more CI jobs failed or were cancelled"
exit 1
fi
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.4] - 2026-02-22

### Changed

- Version bump to 0.3.4

## [0.3.3] - 2026-02-04

### Added
Expand Down Expand Up @@ -448,7 +456,8 @@ Add to `~/.claude/mcp.json`:
- Workspace auto-discovery
- LSP server auto-detection and installation

[Unreleased]: https://github.com/bug-ops/mcpls/compare/v0.3.3...HEAD
[Unreleased]: https://github.com/bug-ops/mcpls/compare/v0.3.4...HEAD
[0.3.4]: https://github.com/bug-ops/mcpls/compare/v0.3.3...v0.3.4
[0.3.3]: https://github.com/bug-ops/mcpls/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/bug-ops/mcpls/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/bug-ops/mcpls/compare/v0.3.0...v0.3.1
Expand Down
Loading