Skip to content

Commit

Permalink
Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fry69 committed Apr 18, 2024
1 parent 438afe1 commit def336e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Additional features not currently found the original version:
2. Download the script
- Install via jsr.io
```shell
curl https://jsr.io/@fry69/files-to-prompt-ts/0.4.0/files-to-prompt.ts > ftp.ts
curl https://jsr.io/@fry69/files-to-prompt-ts/0.4.1/files-to-prompt.ts > ftp.ts
```

- Install via GitHub

```shell
curl https://raw.githubusercontent.com/fry69/files-to-prompt-ts/v0.4.0/files-to-prompt.ts > ftp.ts
curl https://raw.githubusercontent.com/fry69/files-to-prompt-ts/v0.4.1/files-to-prompt.ts > ftp.ts
```

3. Make the script executable with `chmod +x ftp.ts`
Expand Down Expand Up @@ -91,7 +91,7 @@ This tool includes a set of tests to ensure it works as expected. You can run th
bun test --coverage
```
Recent test status (v0.4.0):
Recent test status (v0.4.1):
```
bun test v1.1.4 (fbe2fe0c)
Expand Down
2 changes: 1 addition & 1 deletion files-to-prompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import os from 'node:os';
import path from 'node:path';
import { execSync } from 'node:child_process';

const VERSION = '0.4.0';
const VERSION = '0.4.1';

/**
* Represents the configuration for output.
Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@fry69/files-to-prompt-ts",
"version": "0.4.0",
"version": "0.4.1",
"exports": "./files-to-prompt.ts"
}

0 comments on commit def336e

Please sign in to comment.