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: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2026-01-27

### Added
- Support for 5 new ignore file parsers (Issue #5):
- **remark** (`.remarkignore`) - Markdown processor ignore file
Expand Down Expand Up @@ -128,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Examples for CI/CD integration
- Contributing guidelines

[Unreleased]: https://github.com/mensfeld/lostconf/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/mensfeld/lostconf/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/mensfeld/lostconf/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/mensfeld/lostconf/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/mensfeld/lostconf/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/mensfeld/lostconf/compare/v0.1.0...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lostconf",
"version": "0.3.0",
"version": "0.4.0",
"description": "A meta-linter that detects stale references in configuration files",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const program = new Command();
program
.name('lostconf')
.description('A meta-linter that detects stale references in configuration files')
.version('0.3.0')
.version('0.4.0')
.argument('[paths...]', 'Paths to scan (default: current directory)')
.option('-f, --format <fmt>', 'Output format: text, json, sarif', 'text')
.option('-o, --output <file>', 'Write to file instead of stdout')
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('CLI Integration Tests', () => {
it('should show version with --version', async () => {
const { stdout } = await execAsync(`node ${cliPath} --version`);

expect(stdout).toContain('0.3.0');
expect(stdout).toContain('0.4.0');
});

it('should output text format by default', async () => {
Expand Down