Skip to content

Commit 71e9663

Browse files
authored
chore: release v0.3.7 (#254)
🤖 I have created a release *beep* *boop* --- ## [0.3.7](v0.3.6...v0.3.7) (2025-06-22) ### Features * Add --exclude option to prevent specified tasks from executing ([#250](#250)) ([88edd7e](88edd7e)) * Update input handling to use fast-glob's dynamic pattern check ([#253](#253)) ([9b6c86a](9b6c86a)) ### Bug Fixes * Resolve working directory relative to project directory instead of cwd ([#252](#252)) ([09aec98](09aec98)) ### Internal * Simplify resolveCLIOptions function and extract transformers ([#255](#255)) ([7db6f2b](7db6f2b)) --- 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 7db6f2b commit 71e9663

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"packages/nadle": "0.3.6"
2+
"packages/nadle": "0.3.7"
33
}

packages/nadle/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# nadle
22

3+
## [0.3.7](https://github.com/nam-hle/nadle/compare/v0.3.6...v0.3.7) (2025-06-22)
4+
5+
6+
### Features
7+
8+
* Add --exclude option to prevent specified tasks from executing ([#250](https://github.com/nam-hle/nadle/issues/250)) ([88edd7e](https://github.com/nam-hle/nadle/commit/88edd7ee5201d60d57065178ced846a00560a65c))
9+
* Update input handling to use fast-glob's dynamic pattern check ([#253](https://github.com/nam-hle/nadle/issues/253)) ([9b6c86a](https://github.com/nam-hle/nadle/commit/9b6c86a235c00ba9d768fb1b595b47305f542791))
10+
11+
12+
### Bug Fixes
13+
14+
* Resolve working directory relative to project directory instead of cwd ([#252](https://github.com/nam-hle/nadle/issues/252)) ([09aec98](https://github.com/nam-hle/nadle/commit/09aec9807f2664a6d44d8eab20e0f563144aedc5))
15+
16+
17+
### Internal
18+
19+
* Simplify resolveCLIOptions function and extract transformers ([#255](https://github.com/nam-hle/nadle/issues/255)) ([7db6f2b](https://github.com/nam-hle/nadle/commit/7db6f2b8bf3a33a6822a2ce8c1e278492463355d))
20+
321
## [0.3.6](https://github.com/nam-hle/nadle/compare/v0.3.5...v0.3.6) (2025-06-22)
422

523

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.3.6",
3+
"version": "0.3.7",
44
"description": "A modern, type-safe task runner for Node.js inspired by the awesome Gradle build tool",
55
"type": "module",
66
"scripts": {

packages/nadle/src/core/nadle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { optionRegistry, OptionsResolver } from "./options/shared.js";
1717
import { type NadleCLIOptions, type NadleResolvedOptions } from "./options/index.js";
1818

1919
export class Nadle {
20-
public static readonly version: string = "0.3.6"; // x-release-please-version
20+
public static readonly version: string = "0.3.7"; // x-release-please-version
2121

2222
public readonly logger: Logger;
2323
public readonly reporter: Reporter;

0 commit comments

Comments
 (0)