Skip to content

Commit 94c3b1a

Browse files
authored
chore: release nadle v0.5.1 (#378)
🤖 I have created a release *beep* *boop* --- ## [0.5.1](nadle/v0.5.0...nadle/v0.5.1) (2025-07-20) ### Features * Print configuration only when using --show-config option ([#372](#372)) ([6a65ec9](6a65ec9)) * Order tasks by workspaces when listing tasks ([#371](#371)) ([2ad717b](2ad717b)) * Compute workspace dependencies ([#365](#365)) ([f55cb0e](f55cb0e)) * Add optional --config-key to specify which config should be shown when using --show-config ([#364](#364)) ([145a2b5](145a2b5)) * Add --list-workspaces option to list all available workspaces ([#361](#361)) ([a66d665](a66d665)) ### Bug Fixes * Footer is hidden after choosing task in interaction mode ([#359](#359)) ([3388989](3388989)) * Update task selection to use task IDs in interaction mode ([#358](#358)) ([40b822e](40b822e)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
1 parent 5360995 commit 94c3b1a

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

.github/workflows/lint-pr-title.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,9 @@ jobs:
2424
feat
2525
test
2626
perf
27-
deps
2827
docs
2928
chore
3029
refactor
31-
security
3230
requireScope: false
3331
subjectPattern: ^[a-z].+$
3432
subjectPatternError: |

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"packages/nadle": "0.5.0",
2+
"packages/nadle": "0.5.1",
33
"packages/create-nadle": "0.0.2"
44
}

packages/nadle/CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# nadle
22

3+
## [0.5.1](https://github.com/nadlejs/nadle/compare/nadle/v0.5.0...nadle/v0.5.1) (2025-07-20)
4+
5+
### Features
6+
7+
* Print configuration only when using --show-config option ([#372](https://github.com/nadlejs/nadle/issues/372)) ([6a65ec9](https://github.com/nadlejs/nadle/commit/6a65ec929a17655059190ff3619d6d3436068ca5))
8+
* Order tasks by workspaces when listing tasks ([#371](https://github.com/nadlejs/nadle/issues/371)) ([2ad717b](https://github.com/nadlejs/nadle/commit/2ad717b1f2665f5331679df8579c3c3eb3d761e0))
9+
* Compute workspace dependencies ([#365](https://github.com/nadlejs/nadle/issues/365)) ([f55cb0e](https://github.com/nadlejs/nadle/commit/f55cb0efb4e13fae6789f8fd48b2975ef11e8195))
10+
* Add optional --config-key to specify which config should be shown when using --show-config ([#364](https://github.com/nadlejs/nadle/issues/364)) ([145a2b5](https://github.com/nadlejs/nadle/commit/145a2b57c27b47bc38bccd64d6cffbf9618b2485))
11+
* Add --list-workspaces option to list all available workspaces ([#361](https://github.com/nadlejs/nadle/issues/361)) ([a66d665](https://github.com/nadlejs/nadle/commit/a66d665c7e33d8bf3bd7be59f7ff8da635d230e3))
12+
13+
### Bug Fixes
14+
15+
* Footer is hidden after choosing task in interaction mode ([#359](https://github.com/nadlejs/nadle/issues/359)) ([3388989](https://github.com/nadlejs/nadle/commit/33889898d96bd6b2012fa54ef5223b173b68a76e))
16+
* Update task selection to use task IDs in interaction mode ([#358](https://github.com/nadlejs/nadle/issues/358)) ([40b822e](https://github.com/nadlejs/nadle/commit/40b822e4e6072390057b63b43fe33316e03ffe70))
17+
318
## [0.5.0](https://github.com/nadlejs/nadle/compare/v0.4.0...v0.5.0) (2025-07-16)
419

520

@@ -27,7 +42,6 @@
2742
* Workspaced task detection ([#313](https://github.com/nadlejs/nadle/issues/313)) ([835648f](https://github.com/nadlejs/nadle/commit/835648f8d250be3adbd187aef63e78394c529ca4))
2843
* Workspaces detection ([#310](https://github.com/nadlejs/nadle/issues/310)) ([ec84a8a](https://github.com/nadlejs/nadle/commit/ec84a8a058943a1078d83426fed2f7ccedccef8f))
2944

30-
3145
### Bug Fixes
3246

3347
* Do not traverse up to find the closest config file ([#349](https://github.com/nadlejs/nadle/issues/349)) ([0b9f8e2](https://github.com/nadlejs/nadle/commit/0b9f8e2e880e0eaeae185c2d370ff9d7256199ef))

packages/nadle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nadle",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "A type-safe, modern, Gradle-inspired task runner.",
55
"license": "MIT",
66
"type": "module",

packages/nadle/src/core/nadle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface State {
1616
}
1717

1818
export class Nadle {
19-
public static readonly version: string = "0.5.0"; // x-release-please-version
19+
public static readonly version: string = "0.5.1"; // x-release-please-version
2020

2121
public state: State = { selectingTasks: false };
2222

release-please-config.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"bump-patch-for-minor-pre-major": true,
55

66
"separate-pull-requests": true,
7-
"pull-request-title-pattern": "chore: release ${component} v${version}",
7+
"pull-request-title-pattern": "chore: release${component} v${version}",
88

99
"include-component-in-tag": true,
1010
"tag-separator": "/",
@@ -16,9 +16,7 @@
1616
{ "type": "perf", "section": "Performance" },
1717
{ "type": "refactor", "section": "Internal" },
1818
{ "type": "test", "section": "Internal" },
19-
{ "type": "chore", "section": "Miscellaneous" },
20-
{ "type": "build", "section": "Miscellaneous" },
21-
{ "type": "ci", "section": "Miscellaneous" }
19+
{ "type": "chore", "section": "Internal" }
2220
],
2321

2422
"packages": {

0 commit comments

Comments
 (0)