Skip to content

Commit 6b4f931

Browse files
denobotkt3k
andauthored
chore: release 2025.01.10 (#6340)
Co-authored-by: kt3k <[email protected]>
1 parent 1ad8eab commit 6b4f931

File tree

12 files changed

+74
-21
lines changed

12 files changed

+74
-21
lines changed

Releases.md

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
### 2025.01.10
2+
3+
#### @std/cbor 0.1.5 (patch)
4+
5+
- perf(cbor): improve decodeCbor & decodeCborSequence performance (#6323)
6+
- perf(cbor): encodeCbor & encodeCborSequence (#6311)
7+
8+
#### @std/cli 1.0.10 (patch)
9+
10+
- docs(cli): add examples of parseArgs (#6283)
11+
12+
#### @std/data-structures 1.0.6 (patch)
13+
14+
- fix(data-structures): ensure size consistency in RedBlackTree.from (#6307)
15+
16+
#### @std/datetime 0.225.3 (patch)
17+
18+
- fix(datetime): correct parsing of day period (#6313)
19+
- docs(datetime): remove outdated mention of `utc` option (#6301)
20+
21+
#### @std/expect 1.0.11 (patch)
22+
23+
- fix(expect): consistent `toBeCloseTo` assertion messages (#6291)
24+
- docs(expect,text): remove no-eval directives that appear to be unnecessary
25+
(#6333)
26+
- docs(expect): correct minor typo (#6329)
27+
- docs(expect): clarify the tolerance in `toBeCloseTo` (#6292)
28+
29+
#### @std/fmt 1.0.4 (patch)
30+
31+
- fix(fmt): add correct pluralization to fmt/duration when using style: full
32+
(#6295)
33+
- refactor(fmt): cleanup duration `format()` and utils (#6309)
34+
- test(fmt): add invalid duration `style` option test (#6310)
35+
36+
#### @std/fs 1.0.9 (patch)
37+
38+
- feat(fs/unstable): add statSync and lstatSync (#6300)
39+
- test(fs): do not write files in source tree during test (#6236)
40+
41+
#### @std/log 0.224.13 (patch)
42+
43+
- test(log): re-enable doc tests for `FileHandler` (#6321)
44+
45+
#### @std/testing 1.0.9 (patch)
46+
47+
- docs(testing): clarify beforeAll in describe vs. outside (#6294)
48+
49+
#### @std/text 1.0.10 (patch)
50+
51+
- docs(expect,text): remove no-eval directives that appear to be unnecessary
52+
(#6333)
53+
154
### 2024.12.20
255

356
#### @std/fs 1.0.8 (patch)
@@ -115,7 +168,7 @@
115168

116169
### 2024.11.22
117170

118-
### @std/archive
171+
#### @std/archive
119172

120173
- BREAKING(archive): remove std/archive package (#6185)
121174

cbor/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cbor",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"exports": {
55
".": "./mod.ts",
66
"./array-encoder-stream": "./array_encoder_stream.ts",

cli/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cli",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

data_structures/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/data-structures",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"exports": {
55
".": "./mod.ts",
66
"./unstable-bidirectional-map": "./unstable_bidirectional_map.ts",

datetime/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/datetime",
3-
"version": "0.225.2",
3+
"version": "0.225.3",
44
"exports": {
55
".": "./mod.ts",
66
"./constants": "./constants.ts",

expect/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/expect",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.ts",

fmt/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/fmt",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"exports": {
55
"./bytes": "./bytes.ts",
66
"./colors": "./colors.ts",

fs/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/fs",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

import_map.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@
1010
"@std/async": "jsr:@std/async@^1.0.9",
1111
"@std/bytes": "jsr:@std/bytes@^1.0.4",
1212
"@std/cache": "jsr:@std/cache@^0.1.3",
13-
"@std/cbor": "jsr:@std/cbor@^0.1.4",
14-
"@std/cli": "jsr:@std/cli@^1.0.9",
13+
"@std/cbor": "jsr:@std/cbor@^0.1.5",
14+
"@std/cli": "jsr:@std/cli@^1.0.10",
1515
"@std/collections": "jsr:@std/collections@^1.0.9",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.3",
1717
"@std/csv": "jsr:@std/csv@^1.0.4",
18-
"@std/data-structures": "jsr:@std/data-structures@^1.0.5",
19-
"@std/datetime": "jsr:@std/datetime@^0.225.2",
18+
"@std/data-structures": "jsr:@std/data-structures@^1.0.6",
19+
"@std/datetime": "jsr:@std/datetime@^0.225.3",
2020
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
2121
"@std/encoding": "jsr:@std/encoding@^1.0.6",
22-
"@std/expect": "jsr:@std/expect@^1.0.10",
23-
"@std/fmt": "jsr:@std/fmt@^1.0.3",
22+
"@std/expect": "jsr:@std/expect@^1.0.11",
23+
"@std/fmt": "jsr:@std/fmt@^1.0.4",
2424
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
25-
"@std/fs": "jsr:@std/fs@^1.0.8",
25+
"@std/fs": "jsr:@std/fs@^1.0.9",
2626
"@std/html": "jsr:@std/html@^1.0.3",
2727
"@std/http": "jsr:@std/http@^1.0.12",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
2929
"@std/internal": "jsr:@std/internal@^1.0.5",
3030
"@std/io": "jsr:@std/io@^0.225.0",
3131
"@std/json": "jsr:@std/json@^1.0.1",
3232
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
33-
"@std/log": "jsr:@std/log@^0.224.12",
33+
"@std/log": "jsr:@std/log@^0.224.13",
3434
"@std/media-types": "jsr:@std/media-types@^1.1.0",
3535
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
3636
"@std/net": "jsr:@std/net@^1.0.4",
@@ -40,8 +40,8 @@
4040
"@std/semver": "jsr:@std/semver@^1.0.3",
4141
"@std/streams": "jsr:@std/streams@^1.0.8",
4242
"@std/tar": "jsr:@std/tar@^0.1.4",
43-
"@std/testing": "jsr:@std/testing@^1.0.8",
44-
"@std/text": "jsr:@std/text@^1.0.9",
43+
"@std/testing": "jsr:@std/testing@^1.0.9",
44+
"@std/text": "jsr:@std/text@^1.0.10",
4545
"@std/toml": "jsr:@std/toml@^1.0.2",
4646
"@std/ulid": "jsr:@std/ulid@^1.0.0",
4747
"@std/uuid": "jsr:@std/uuid@^1.0.4",

log/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/log",
3-
"version": "0.224.12",
3+
"version": "0.224.13",
44
"exports": {
55
".": "./mod.ts",
66
"./base-handler": "./base_handler.ts",

testing/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/testing",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"exports": {
55
"./bdd": "./bdd.ts",
66
"./mock": "./mock.ts",

text/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/text",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./closest-string": "./closest_string.ts",

0 commit comments

Comments
 (0)