|
2 | 2 |
|
3 | 3 | ## Unreleased
|
4 | 4 |
|
5 |
| -- added: Ability to run multiple scripts in a single call (e.g. `dotnet r build test pack`) |
| 5 | +### Added |
| 6 | + |
| 7 | +- Ability to run multiple scripts in a single call (e.g. `dotnet r build test pack`) ([#10](https://github.com/xt0rted/dotnet-run-script/pull/10)) |
| 8 | + |
| 9 | +### Updated |
| 10 | + |
| 11 | +- Bumped `System.CommandLine` from 2.0.0-beta3.22114.1 to 2.0.0-beta4.22272.1 |
| 12 | +- Bumped `System.CommandLine.Rendering` from 0.4.0-alpha.22114.1 to 0.4.0-alpha.22272.1 |
6 | 13 |
|
7 | 14 | ## [0.3.0](https://github.com/xt0rted/dotnet-run-script/compare/v0.2.0...v0.3.0) - 2022-04-24
|
8 | 15 |
|
9 |
| -- fixed: Don't escape the script passed to `cmd.exe`, just the double dash arguments |
| 16 | +### Fixed |
| 17 | + |
| 18 | +- Don't escape the script passed to `cmd.exe`, just the double dash arguments |
10 | 19 |
|
11 | 20 | ## [0.2.0](https://github.com/xt0rted/dotnet-run-script/compare/v0.1.0...v0.2.0) - 2022-04-23
|
12 | 21 |
|
13 | 22 | > ℹ️ This version broke conditional script execution (`cmd1 && cmd2`) in `cmd.exe`
|
14 | 23 |
|
15 |
| -- added: Force color output with the `DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION` environment variable. |
| 24 | +### Added |
| 25 | + |
| 26 | +- Force color output with the `DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION` environment variable. |
16 | 27 | - Note: this tool with output color on all platforms including when output is redirected, but the dotnet cli only supports this on Unix platforms currently. This means script results might not be colored in places like GitHub Actions build logs when using the Windows VMs.
|
17 |
| -- added: Added `-v` alias to enable verbose output. |
18 |
| -- fixed: Escape arguments for non-cmd shells |
19 |
| -- fixed: Quote additional arguments passed after `--` |
20 |
| -- fixed: Escape scripts with `^` passed to `cmd.exe` |
21 |
| -- updated: Switched from [actions/setup-dotnet](https://github.com/actions/setup-dotnet) to [xt0rted/setup-dotnet](https://github.com/xt0rted/setup-dotnet) |
| 28 | +- Added `-v` alias to enable verbose output. |
| 29 | + |
| 30 | +### Fixed |
| 31 | + |
| 32 | +- Escape arguments for non-cmd shells |
| 33 | +- Quote additional arguments passed after `--` |
| 34 | +- Escape scripts with `^` passed to `cmd.exe` |
| 35 | + |
| 36 | +### Updated |
| 37 | + |
| 38 | +- Switched from [actions/setup-dotnet](https://github.com/actions/setup-dotnet) to [xt0rted/setup-dotnet](https://github.com/xt0rted/setup-dotnet) |
22 | 39 |
|
23 | 40 | ## [0.1.0](https://github.com/xt0rted/dotnet-run-script/releases/tag/v0.1.0) - 2022-03-26
|
24 | 41 |
|
|
0 commit comments