Skip to content

Commit ebf6ee5

Browse files
authored
chore(release): v0.13.0-rc.7 (#1713)
Signed-off-by: Ian Lewis <ian@ianlewis.org>
1 parent 62cd86d commit ebf6ee5

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ All notable changes will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [`0.13.0-rc.6`] - 2025-05-15
8+
## [`0.13.0-rc.7`] - 2025-05-15
99

10-
### Added in `0.13.0-rc.6`
10+
### Added in `0.13.0-rc.7`
1111

1212
- Support was added for the [Nix language](https://nix.dev/)
1313
([#1653](https://github.com/ianlewis/todos/issues/1653)).
@@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
npm install -g @ianlewis/todos
2929
```
3030

31-
### Changed in `0.13.0-rc.6`
31+
### Changed in `0.13.0-rc.7`
3232

3333
- **BREAKING CHANGE:** `todos` now returns an exit status of 1 when TODOs are
3434
found ([#1657](https://github.com/ianlewis/todos/issues/1657)).
@@ -269,4 +269,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
269269
[`0.10.0`]: https://github.com/ianlewis/todos/releases/tag/v0.10.0
270270
[`0.11.0`]: https://github.com/ianlewis/todos/releases/tag/v0.11.0
271271
[`0.12.0`]: https://github.com/ianlewis/todos/releases/tag/v0.12.0
272-
[`0.13.0-rc.6`]: https://github.com/ianlewis/todos/releases/tag/v0.13.0-rc.6
272+
[`0.13.0-rc.7`]: https://github.com/ianlewis/todos/releases/tag/v0.13.0-rc.7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ FROM --platform=$BUILDPLATFORM scratch
1818
ARG TARGETOS
1919
ARG TARGETARCH
2020

21-
COPY todos-${TARGETOS}-${TARGETARCH} /todos
21+
COPY --chmod=0755 todos-${TARGETOS}-${TARGETARCH} /todos
2222

2323
ENTRYPOINT ["/todos"]

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",
@@ -23,12 +23,12 @@
2323
"LICENSE"
2424
],
2525
"optionalDependencies": {
26-
"@ianlewis/todos-linux-amd64": "0.13.0-rc.6",
27-
"@ianlewis/todos-linux-arm64": "0.13.0-rc.6",
28-
"@ianlewis/todos-darwin-amd64": "0.13.0-rc.6",
29-
"@ianlewis/todos-darwin-arm64": "0.13.0-rc.6",
30-
"@ianlewis/todos-windows-amd64": "0.13.0-rc.6",
31-
"@ianlewis/todos-windows-arm64": "0.13.0-rc.6"
26+
"@ianlewis/todos-linux-amd64": "0.13.0-rc.7",
27+
"@ianlewis/todos-linux-arm64": "0.13.0-rc.7",
28+
"@ianlewis/todos-darwin-amd64": "0.13.0-rc.7",
29+
"@ianlewis/todos-darwin-arm64": "0.13.0-rc.7",
30+
"@ianlewis/todos-windows-amd64": "0.13.0-rc.7",
31+
"@ianlewis/todos-windows-arm64": "0.13.0-rc.7"
3232
},
3333
"devDependencies": {
3434
"dictionary-en": "4.0.0",

packages/todos-darwin-amd64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-darwin-amd64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

packages/todos-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-darwin-arm64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

packages/todos-linux-amd64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-linux-amd64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

packages/todos-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-linux-arm64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

packages/todos-windows-amd64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-windows-amd64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

packages/todos-windows-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ianlewis/todos-windows-arm64",
33
"description": "Parse TODO and FIXME comments from code",
44
"homepage": "https://github.com/ianlewis/todos#readme",
5-
"version": "0.13.0-rc.6",
5+
"version": "0.13.0-rc.7",
66
"license": "Apache-2.0",
77
"author": {
88
"name": "Ian Lewis",

0 commit comments

Comments
 (0)