Skip to content

Commit 8672a84

Browse files
committed
Release 1.1.1 Comment/note cleanup after review
1 parent ee5442e commit 8672a84

6 files changed

Lines changed: 11 additions & 7 deletions

File tree

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# .gitattributes
22
#
3-
# Line ending policy for delphi-compiler-versions
3+
# Line ending policy for delphi-clean
44
# note to self
55
# git add --renormalize .
66
# git commit -m "chore: enforce CRLF for .inc via .gitattributes"

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44

55
---
6+
## [1.1.1] - 2026-05-16
7+
8+
- Comment/notes cleanup only
9+
610
## [1.1.0] - 2026-05-14
711

812
- Support for `delphi-logger` added (opt-in structural logging for debug
@@ -134,7 +138,7 @@ single `ExcludeDirectoryPattern` parameter
134138

135139
## [0.1.0] 2026-03-19
136140

137-
- Initial release of `delphi-clean- utility
141+
- Initial release of `delphi-clean` utility
138142
- Three different cleanup levels
139143
- Dry-run / WhatIf mode
140144
- ExcludeDirectories option

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Continuous Delphi
3+
Copyright (c) 2026 Darian Miller
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/cleanup-levels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Safe cleanup of common transient files.
3232

3333
## LEVEL=`standard`
3434

35-
Includes everything in `basic, plus the following additional items.
35+
Includes everything in `basic`, plus the following additional items.
3636

3737
### Additional Files
3838

docs/json-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ When `-Version -Format json` is used, a version envelope is returned.
150150
"command": "version",
151151
"tool": {
152152
"name": "delphi-clean",
153-
"version": "0.12.0"
153+
"version": "1.1.0"
154154
}
155155
}
156156
```

source/delphi-clean.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ param(
180180
[Parameter(ParameterSetName = 'Clean')]
181181
[switch]$RecycleBin,
182182

183-
# Audit mode: scan only, never deletes. Exit 0 = nothing found, 2 = artifacts found.
183+
# Audit mode: scan only, never deletes. Exit 0 = nothing found, 1 = artifacts found.
184184
# Cannot be combined with -WhatIf.
185185
[Parameter(ParameterSetName = 'Clean')]
186186
[switch]$Check,
@@ -206,7 +206,7 @@ param(
206206
Set-StrictMode -Version Latest
207207
$ErrorActionPreference = 'Stop'
208208

209-
$script:ToolVersion = '1.1.0'
209+
$script:ToolVersion = '1.1.1'
210210

211211
# BEGIN-CD-HOSTLOG
212212
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)