Skip to content

Commit 50f7c0c

Browse files
denobotkt3k
andauthored
chore: release 2025.02.14 (denoland#6399)
Co-authored-by: kt3k <[email protected]>
1 parent 765cb08 commit 50f7c0c

File tree

6 files changed

+30
-8
lines changed

6 files changed

+30
-8
lines changed

Releases.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
### 2025.02.14
2+
3+
#### @std/cli 1.0.13 (patch)
4+
5+
- feat(cli/unstable): introduce `new ProgressBar()` & `new ProgressBarStream()`
6+
(#6378)
7+
8+
#### @std/front-matter 1.0.6 (patch)
9+
10+
- refactor(front-matter): call `extract()` functions in `any.ts` (#6390)
11+
12+
#### @std/fs 1.0.12 (patch)
13+
14+
- feat(fs/unstable): add renameSync (#6396)
15+
- feat(fs/unstable): add readFile and readFileSync (#6394)
16+
- feat(fs/unstable): add makeTempDir and makeTempDirSync (#6391)
17+
- feat(fs/unstable): add rename (#6379)
18+
19+
#### @std/semver 1.0.4 (patch)
20+
21+
- refactor(semver): clean up `parseRange`, add missing tests (#6362)
22+
123
### 2025.01.31
224

325
#### @std/bytes 1.0.5 (patch)

cli/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cli",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

front_matter/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/front-matter",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"exports": {
55
".": "./mod.ts",
66
"./any": "./any.ts",

fs/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/fs",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

import_map.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@std/bytes": "jsr:@std/bytes@^1.0.5",
1212
"@std/cache": "jsr:@std/cache@^0.1.3",
1313
"@std/cbor": "jsr:@std/cbor@^0.1.6",
14-
"@std/cli": "jsr:@std/cli@^1.0.12",
14+
"@std/cli": "jsr:@std/cli@^1.0.13",
1515
"@std/collections": "jsr:@std/collections@^1.0.10",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.4",
1717
"@std/csv": "jsr:@std/csv@^1.0.5",
@@ -21,8 +21,8 @@
2121
"@std/encoding": "jsr:@std/encoding@^1.0.7",
2222
"@std/expect": "jsr:@std/expect@^1.0.13",
2323
"@std/fmt": "jsr:@std/fmt@^1.0.5",
24-
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
25-
"@std/fs": "jsr:@std/fs@^1.0.11",
24+
"@std/front-matter": "jsr:@std/front-matter@^1.0.6",
25+
"@std/fs": "jsr:@std/fs@^1.0.12",
2626
"@std/html": "jsr:@std/html@^1.0.3",
2727
"@std/http": "jsr:@std/http@^1.0.13",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
@@ -37,7 +37,7 @@
3737
"@std/path": "jsr:@std/path@^1.0.8",
3838
"@std/regexp": "jsr:@std/regexp@^1.0.1",
3939
"@std/random": "jsr:@std/random@^0.1.0",
40-
"@std/semver": "jsr:@std/semver@^1.0.3",
40+
"@std/semver": "jsr:@std/semver@^1.0.4",
4141
"@std/streams": "jsr:@std/streams@^1.0.9",
4242
"@std/tar": "jsr:@std/tar@^0.1.5",
4343
"@std/testing": "jsr:@std/testing@^1.0.9",

semver/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/semver",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"exports": {
55
".": "./mod.ts",
66
"./can-parse": "./can_parse.ts",

0 commit comments

Comments
 (0)