Skip to content

Commit 03c0730

Browse files
committed
chore(release): v1.0.0-rc.5
1 parent a6d2bc9 commit 03c0730

11 files changed

Lines changed: 77 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
# [v1.0.0-rc.5](https://github.com/c4spar/deno-cliffy/compare/v1.0.0-rc.4...v1.0.0-rc.5) (Jul 1, 2024)
2+
3+
### Features
4+
5+
- add built-in `jsr` upgrade provider (rework) ( #692)
6+
([b976d26](https://github.com/c4spar/deno-cliffy/commit/b976d26))
7+
- publish to jsr.io ( #679)
8+
([ff14148](https://github.com/c4spar/deno-cliffy/commit/ff14148))
9+
- **ansi,keypress,prompt:** add support for node.js ( #720)
10+
([1e1c2e6](https://github.com/c4spar/deno-cliffy/commit/1e1c2e6))
11+
- **command:** add support for nodejs ( #693)
12+
([f81e895](https://github.com/c4spar/deno-cliffy/commit/f81e895))
13+
- **command:** add support for node and bun to upgrade command ( #705)
14+
([7011ada](https://github.com/c4spar/deno-cliffy/commit/7011ada))
15+
- **command:** support zsh fpath completion ( #703)
16+
([f770de2](https://github.com/c4spar/deno-cliffy/commit/f770de2))
17+
- **command:** add npm upgrade provider ( #701)
18+
([45dbe30](https://github.com/c4spar/deno-cliffy/commit/45dbe30))
19+
20+
### Bug Fixes
21+
22+
- **prompt:** expand input value if file suggestions are enabled ( #719)
23+
([e377f04](https://github.com/c4spar/deno-cliffy/commit/e377f04))
24+
- **prompt:** fix validation and return type of object option values for
25+
checkbox and seleect prompt ( #718)
26+
([3e92792](https://github.com/c4spar/deno-cliffy/commit/3e92792))
27+
28+
### Code Refactoring
29+
30+
- **command:** add exports for completions and upgrade provider ( #700)
31+
([6d08b9a](https://github.com/c4spar/deno-cliffy/commit/6d08b9a))
32+
33+
### Chore
34+
35+
- replace conditional_type_checks with @std/testing/types ( #699)
36+
([2bc19f7](https://github.com/c4spar/deno-cliffy/commit/2bc19f7))
37+
- **ci:** enable `DENO_FUTURE` on ci ( #715)
38+
([318e2af](https://github.com/c4spar/deno-cliffy/commit/318e2af))
39+
- **ci:** upgrade codecov-action to v4 ( #708)
40+
([7a932da](https://github.com/c4spar/deno-cliffy/commit/7a932da))
41+
- **deps:** upgrade @std to latest version ( #721)
42+
([a6d2bc9](https://github.com/c4spar/deno-cliffy/commit/a6d2bc9))
43+
- **deps:** upgrade @std to latest version ( #714)
44+
([c74892b](https://github.com/c4spar/deno-cliffy/commit/c74892b))
45+
- **lint:** remove unused null coalescing operator ( #713)
46+
([da5d7b2](https://github.com/c4spar/deno-cliffy/commit/da5d7b2))
47+
48+
### Unit/Integration Tests
49+
50+
- **command:** add provider tests ( #706)
51+
([10d9254](https://github.com/c4spar/deno-cliffy/commit/10d9254))
52+
- **command,prompt:** fix tests ( #697)
53+
([fe9726d](https://github.com/c4spar/deno-cliffy/commit/fe9726d))
54+
55+
### deps
56+
57+
- **upgrade:** upgrade @std/* to latest version ( #704)
58+
([4e62e39](https://github.com/c4spar/deno-cliffy/commit/4e62e39))
59+
160
# [v1.0.0-rc.4](https://github.com/c4spar/deno-cliffy/compare/v1.0.0-rc.3...v1.0.0-rc.4) (Apr 7, 2024)
261

362
### BREAKING CHANGES

ansi/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cliffy/ansi",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
".": "./ansi.ts",
66
"./ansi-escapes": "./ansi_escapes.ts",

command/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cliffy/command",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
".": "./mod.ts",
66
"./completions": "./completions/mod.ts",

deno.jsonc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"imports": {
3434
"@c4spar/mock-command": "jsr:@c4spar/mock-command@^1.0.0",
3535
"@c4spar/mock-fetch": "jsr:@c4spar/mock-fetch@^1.0.0",
36-
"@cliffy/ansi": "jsr:@cliffy/ansi@1.0.0-rc.4",
37-
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.4",
38-
"@cliffy/flags": "jsr:@cliffy/flags@1.0.0-rc.4",
39-
"@cliffy/internal": "jsr:@cliffy/internal@1.0.0-rc.4",
40-
"@cliffy/keycode": "jsr:@cliffy/keycode@1.0.0-rc.4",
41-
"@cliffy/keypress": "jsr:@cliffy/keypress@1.0.0-rc.4",
42-
"@cliffy/prompt": "jsr:@cliffy/prompt@1.0.0-rc.4",
43-
"@cliffy/table": "jsr:@cliffy/table@1.0.0-rc.4",
44-
"@cliffy/testing": "jsr:@cliffy/testing@1.0.0-rc.4",
36+
"@cliffy/ansi": "jsr:@cliffy/ansi@1.0.0-rc.5",
37+
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.5",
38+
"@cliffy/flags": "jsr:@cliffy/flags@1.0.0-rc.5",
39+
"@cliffy/internal": "jsr:@cliffy/internal@1.0.0-rc.5",
40+
"@cliffy/keycode": "jsr:@cliffy/keycode@1.0.0-rc.5",
41+
"@cliffy/keypress": "jsr:@cliffy/keypress@1.0.0-rc.5",
42+
"@cliffy/prompt": "jsr:@cliffy/prompt@1.0.0-rc.5",
43+
"@cliffy/table": "jsr:@cliffy/table@1.0.0-rc.5",
44+
"@cliffy/testing": "jsr:@cliffy/testing@1.0.0-rc.5",
4545
"@std/assert": "jsr:@std/assert@1.0.0-rc.2",
4646
"@std/async": "jsr:@std/async@1.0.0-rc.2",
4747
"@std/cli": "jsr:@std/cli@1.0.0-rc.2",

flags/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@cliffy/flags",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": "./mod.ts"
55
}

internal/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cliffy/internal",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
"./runtime/exit": "./runtime/exit.ts",
66
"./runtime/get-args": "./runtime/get_args.ts",

keycode/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@cliffy/keycode",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": "./mod.ts"
55
}

keypress/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@cliffy/keypress",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": "./mod.ts"
55
}

prompt/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cliffy/prompt",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
".": "./mod.ts",
66
"./checkbox": "./checkbox.ts",

table/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@cliffy/table",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": "./mod.ts"
55
}

0 commit comments

Comments
 (0)