Skip to content

Commit

Permalink
docs: add version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linux-china committed Jan 23, 2024
1 parent 07adc0b commit d74bda1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@

## [Unreleased]

## [0.14.0] - 2024-01-23

- Add [Bun Shell](https://bun.sh/docs/runtime/shell) support: create a `Taskfile.ts` with following code:

```typescript
import {$} from "bun";

export async function hello() {
await $`echo Hello World!`;
}
export async function list_js() {
await $`ls *.js`;
}
```

Then run `tk hello` to run task with Bun Shell.

## [0.13.2] - 2023-12-10

- Fix bug to parse ID in Markdown Attributes
Expand Down

0 comments on commit d74bda1

Please sign in to comment.