Skip to content

Commit 77e3d80

Browse files
authored
chore: release v0.3.6 (#237)
🤖 I have created a release *beep* *boop* --- ## [0.3.6](v0.3.5...v0.3.6) (2025-06-22) ### Features * Add projectDir resolution ([#204](#204)) ([c559100](c559100)) * **caching:** Add --no-cache option to disable task caching ([#240](#240)) ([f4a681f](f4a681f)) * **caching:** Add input and output declarations for tasks ([#184](#184)) ([4cfcaee](4cfcaee)) * **caching:** Allow task to be up-to-date ([#198](#198)) ([f01d92f](f01d92f)) * **caching:** Cache key/metadata generation and detection ([#194](#194)) ([f93d7f7](f93d7f7)) * **caching:** Implement CacheManager ([#182](#182)) ([38956cd](38956cd)) * **caching:** Implement output caching and restoration ([#203](#203)) ([f7c34cc](f7c34cc)) * **caching:** Introduce Inputs/Outputs declarations ([#234](#234)) ([fc315a8](fc315a8)) * **caching:** Update output caching to use projectDir for saving and restoring outputs ([#215](#215)) ([7ae1aec](7ae1aec)) * **caching:** Use object-hash instead of self implementing ([3d69c1f](3d69c1f)) * **reporter:** Add support for task status 'up-to-date' and 'from-cache' ([#217](#217)) ([26ad307](26ad307)) ### Bug Fixes * Suppress initial logs until loading configuration file ([#238](#238)) ([a9cb70c](a9cb70c)) ### Internal * Add project directory test for various package managers ([#226](#226)) ([b350bf1](b350bf1)) * Implement custom Vitest matchers for task order and status assertions ([#243](#243)) ([962ec71](962ec71)) * Increase timeout for order execution tests ([391f0d3](391f0d3)) * Increase timeout for order tests in basic.test.ts ([7b1178c](7b1178c)) * **reporter:** Improve running tasks section ([#222](#222)) ([a206769](a206769)) * Update version handling and display version in navbar ([#235](#235)) ([4a416ec](4a416ec)) ### Miscellaneous * **deps-dev:** Bump @types/node from 20.17.57 to 20.19.0 ([#209](#209)) ([2e7b949](2e7b949)) * **deps-dev:** Bump knip from 5.60.2 to 5.61.0 ([#192](#192)) ([1ba2dd9](1ba2dd9)) * **deps-dev:** Bump vitest from 3.2.2 to 3.2.3 ([#173](#173)) ([277be91](277be91)) * **deps:** Bump glob from 11.0.2 to 11.0.3 ([#189](#189)) ([e7ce5e2](e7ce5e2)) * **deps:** Bump tinypool from 1.1.0 to 1.1.1 ([#218](#218)) ([414f325](414f325)) * Remove other changelog libraries ([962ec71](962ec71)) * Remove sourcemap and code splitting options ([#195](#195)) ([9e67378](9e67378)) * Update release-please configuration and version annotation ([467f3e4](467f3e4)) * Update release-please version annotation comment ([fb9bebf](fb9bebf)) * Use uncompress size ([#201](#201)) ([246334d](246334d)) --- 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 962ec71 commit 77e3d80

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-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.5"
2+
"packages/nadle": "0.3.6"
33
}

packages/nadle/CHANGELOG.md

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

3+
## [0.3.6](https://github.com/nam-hle/nadle/compare/v0.3.5...v0.3.6) (2025-06-22)
4+
5+
6+
### Features
7+
8+
* Add projectDir resolution ([#204](https://github.com/nam-hle/nadle/issues/204)) ([c559100](https://github.com/nam-hle/nadle/commit/c5591007d269cd3b48c24f92a7986a8847430d64))
9+
* **caching:** Add --no-cache option to disable task caching ([#240](https://github.com/nam-hle/nadle/issues/240)) ([f4a681f](https://github.com/nam-hle/nadle/commit/f4a681fb9aba496d7c3e26e1c252115b4b167a99))
10+
* **caching:** Add input and output declarations for tasks ([#184](https://github.com/nam-hle/nadle/issues/184)) ([4cfcaee](https://github.com/nam-hle/nadle/commit/4cfcaee8d516ff47b80c44b23d173cc2b6fbcfd8))
11+
* **caching:** Allow task to be up-to-date ([#198](https://github.com/nam-hle/nadle/issues/198)) ([f01d92f](https://github.com/nam-hle/nadle/commit/f01d92f720dc4163af7631ad2aeafaa0b0d2aaee))
12+
* **caching:** Cache key/metadata generation and detection ([#194](https://github.com/nam-hle/nadle/issues/194)) ([f93d7f7](https://github.com/nam-hle/nadle/commit/f93d7f76e30d6816ecbfb3ae99439d03ce13f817))
13+
* **caching:** Implement CacheManager ([#182](https://github.com/nam-hle/nadle/issues/182)) ([38956cd](https://github.com/nam-hle/nadle/commit/38956cdb98adf6b0007d1752a37043ec74d5206a))
14+
* **caching:** Implement output caching and restoration ([#203](https://github.com/nam-hle/nadle/issues/203)) ([f7c34cc](https://github.com/nam-hle/nadle/commit/f7c34ccce8026c34090da0dff7bee5f26e4be10f))
15+
* **caching:** Introduce Inputs/Outputs declarations ([#234](https://github.com/nam-hle/nadle/issues/234)) ([fc315a8](https://github.com/nam-hle/nadle/commit/fc315a88e4b413215be305bd2f6e639134fb7a6f))
16+
* **caching:** Update output caching to use projectDir for saving and restoring outputs ([#215](https://github.com/nam-hle/nadle/issues/215)) ([7ae1aec](https://github.com/nam-hle/nadle/commit/7ae1aecd7b989e5077470436219096a84adfac3f))
17+
* **caching:** Use object-hash instead of self implementing ([3d69c1f](https://github.com/nam-hle/nadle/commit/3d69c1f39e66aaca193480068bc0f08c6733fb9c))
18+
* **reporter:** Add support for task status 'up-to-date' and 'from-cache' ([#217](https://github.com/nam-hle/nadle/issues/217)) ([26ad307](https://github.com/nam-hle/nadle/commit/26ad3079c46c38cac4c4ebfe7a041259d4e20a47))
19+
20+
21+
### Bug Fixes
22+
23+
* Suppress initial logs until loading configuration file ([#238](https://github.com/nam-hle/nadle/issues/238)) ([a9cb70c](https://github.com/nam-hle/nadle/commit/a9cb70c77e864214819d2d64f01e9b9fcda04fa4))
24+
25+
26+
### Internal
27+
28+
* Add project directory test for various package managers ([#226](https://github.com/nam-hle/nadle/issues/226)) ([b350bf1](https://github.com/nam-hle/nadle/commit/b350bf1f98023d418a82d5199a85550f6d645f9c))
29+
* Implement custom Vitest matchers for task order and status assertions ([#243](https://github.com/nam-hle/nadle/issues/243)) ([962ec71](https://github.com/nam-hle/nadle/commit/962ec71ad118880c0f2e39cccb66d7c66bd7eaa0))
30+
* Increase timeout for order execution tests ([391f0d3](https://github.com/nam-hle/nadle/commit/391f0d37d0a9aac5f89e28f0c1a19660846b6e66))
31+
* Increase timeout for order tests in basic.test.ts ([7b1178c](https://github.com/nam-hle/nadle/commit/7b1178c886f96174a00cce5d7992911af5ac5596))
32+
* **reporter:** Improve running tasks section ([#222](https://github.com/nam-hle/nadle/issues/222)) ([a206769](https://github.com/nam-hle/nadle/commit/a206769bf4d632d3b7f077786a07b5416cdb3481))
33+
* Update version handling and display version in navbar ([#235](https://github.com/nam-hle/nadle/issues/235)) ([4a416ec](https://github.com/nam-hle/nadle/commit/4a416ec95579cba1a5ccf35733eae29761b16f96))
34+
35+
36+
### Miscellaneous
37+
38+
* **deps-dev:** Bump @types/node from 20.17.57 to 20.19.0 ([#209](https://github.com/nam-hle/nadle/issues/209)) ([2e7b949](https://github.com/nam-hle/nadle/commit/2e7b9495c9936465f05780e1d39c7bef29655eaf))
39+
* **deps-dev:** Bump knip from 5.60.2 to 5.61.0 ([#192](https://github.com/nam-hle/nadle/issues/192)) ([1ba2dd9](https://github.com/nam-hle/nadle/commit/1ba2dd9a129d43de4d911d9f1449418570a8413f))
40+
* **deps-dev:** Bump vitest from 3.2.2 to 3.2.3 ([#173](https://github.com/nam-hle/nadle/issues/173)) ([277be91](https://github.com/nam-hle/nadle/commit/277be918c551624fc944aa085f52b22570f9e07d))
41+
* **deps:** Bump glob from 11.0.2 to 11.0.3 ([#189](https://github.com/nam-hle/nadle/issues/189)) ([e7ce5e2](https://github.com/nam-hle/nadle/commit/e7ce5e2a99e8ee239e4fbcc9501c8f5a31138bb9))
42+
* **deps:** Bump tinypool from 1.1.0 to 1.1.1 ([#218](https://github.com/nam-hle/nadle/issues/218)) ([414f325](https://github.com/nam-hle/nadle/commit/414f3256259e382965836d72ebfe933392c1d50f))
43+
* Remove other changelog libraries ([962ec71](https://github.com/nam-hle/nadle/commit/962ec71ad118880c0f2e39cccb66d7c66bd7eaa0))
44+
* Remove sourcemap and code splitting options ([#195](https://github.com/nam-hle/nadle/issues/195)) ([9e67378](https://github.com/nam-hle/nadle/commit/9e6737889e7e21edd882373ac899209d69745b10))
45+
* Update release-please configuration and version annotation ([467f3e4](https://github.com/nam-hle/nadle/commit/467f3e492add2bc77821c359278a0a9546f33b40))
46+
* Update release-please version annotation comment ([fb9bebf](https://github.com/nam-hle/nadle/commit/fb9bebf48f937039282a5c3773a000b971ee43a9))
47+
* Use uncompress size ([#201](https://github.com/nam-hle/nadle/issues/201)) ([246334d](https://github.com/nam-hle/nadle/commit/246334d9def34a70dcbbc3ee6647997f8abfe8c5))
48+
349
## 0.3.5
450

551
### Patch Changes

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.5",
3+
"version": "0.3.6",
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.5"; // x-release-please-version
20+
public static readonly version: string = "0.3.6"; // x-release-please-version
2121

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

0 commit comments

Comments
 (0)