Skip to content

Commit

Permalink
chore: update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jan 10, 2025
1 parent 1ad8eab commit 9d7608b
Show file tree
Hide file tree
Showing 12 changed files with 73 additions and 20 deletions.
53 changes: 53 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,56 @@
### 2025.01.10

#### @std/cbor 0.1.5 (patch)

- perf(cbor): improve decodeCbor & decodeCborSequence performance (#6323)
- perf(cbor): encodeCbor & encodeCborSequence (#6311)

#### @std/cli 1.0.10 (patch)

- docs(cli): add examples of parseArgs (#6283)

#### @std/data-structures 1.0.6 (patch)

- fix(data-structures): ensure size consistency in RedBlackTree.from (#6307)

#### @std/datetime 0.225.3 (patch)

- fix(datetime): correct parsing of day period (#6313)
- docs(datetime): remove outdated mention of `utc` option (#6301)

#### @std/expect 1.0.11 (patch)

- fix(expect): consistent `toBeCloseTo` assertion messages (#6291)
- docs(expect,text): remove no-eval directives that appear to be unneccessary

Check warning on line 24 in Releases.md

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

"unneccessary" should be "unnecessary".

Check failure on line 24 in Releases.md

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

`unneccessary` should be `unnecessary`
(#6333)
- docs(expect): correct minor typo (#6329)
- docs(expect): clarify the tolerance in `toBeCloseTo` (#6292)

#### @std/fmt 1.0.4 (patch)

- fix(fmt): add correct pluralization to fmt/duration when using style: full
(#6295)
- refactor(fmt): cleanup duration `format()` and utils (#6309)
- test(fmt): add invalid duration `style` option test (#6310)

#### @std/fs 1.0.9 (patch)

- feat(fs/unstable): add statSync and lstatSync (#6300)
- test(fs): do not write files in source tree during test (#6236)

#### @std/log 0.224.13 (patch)

- test(log): re-enable doc tests for `FileHandler` (#6321)

#### @std/testing 1.0.9 (patch)

- docs(testing): clarify beforeAll in describe vs. outside (#6294)

#### @std/text 1.0.10 (patch)

- docs(expect,text): remove no-eval directives that appear to be unneccessary

Check warning on line 51 in Releases.md

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

"unneccessary" should be "unnecessary".

Check failure on line 51 in Releases.md

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

`unneccessary` should be `unnecessary`
(#6333)

### 2024.12.20

#### @std/fs 1.0.8 (patch)
Expand Down
2 changes: 1 addition & 1 deletion cbor/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cbor",
"version": "0.1.4",
"version": "0.1.5",
"exports": {
".": "./mod.ts",
"./array-encoder-stream": "./array_encoder_stream.ts",
Expand Down
2 changes: 1 addition & 1 deletion cli/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cli",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
2 changes: 1 addition & 1 deletion data_structures/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/data-structures",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./unstable-bidirectional-map": "./unstable_bidirectional_map.ts",
Expand Down
2 changes: 1 addition & 1 deletion datetime/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/datetime",
"version": "0.225.2",
"version": "0.225.3",
"exports": {
".": "./mod.ts",
"./constants": "./constants.ts",
Expand Down
2 changes: 1 addition & 1 deletion expect/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/expect",
"version": "1.0.10",
"version": "1.0.11",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",
Expand Down
2 changes: 1 addition & 1 deletion fmt/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/fmt",
"version": "1.0.3",
"version": "1.0.4",
"exports": {
"./bytes": "./bytes.ts",
"./colors": "./colors.ts",
Expand Down
2 changes: 1 addition & 1 deletion fs/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/fs",
"version": "1.0.8",
"version": "1.0.9",
"exports": {
".": "./mod.ts",
"./copy": "./copy.ts",
Expand Down
20 changes: 10 additions & 10 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@
"@std/async": "jsr:@std/async@^1.0.9",
"@std/bytes": "jsr:@std/bytes@^1.0.4",
"@std/cache": "jsr:@std/cache@^0.1.3",
"@std/cbor": "jsr:@std/cbor@^0.1.4",
"@std/cli": "jsr:@std/cli@^1.0.9",
"@std/cbor": "jsr:@std/cbor@^0.1.5",
"@std/cli": "jsr:@std/cli@^1.0.10",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/csv": "jsr:@std/csv@^1.0.4",
"@std/data-structures": "jsr:@std/data-structures@^1.0.5",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/data-structures": "jsr:@std/data-structures@^1.0.6",
"@std/datetime": "jsr:@std/datetime@^0.225.3",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/encoding": "jsr:@std/encoding@^1.0.6",
"@std/expect": "jsr:@std/expect@^1.0.10",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/expect": "jsr:@std/expect@^1.0.11",
"@std/fmt": "jsr:@std/fmt@^1.0.4",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.8",
"@std/fs": "jsr:@std/fs@^1.0.9",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/http": "jsr:@std/http@^1.0.12",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
"@std/internal": "jsr:@std/internal@^1.0.5",
"@std/io": "jsr:@std/io@^0.225.0",
"@std/json": "jsr:@std/json@^1.0.1",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.12",
"@std/log": "jsr:@std/log@^0.224.13",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
"@std/net": "jsr:@std/net@^1.0.4",
Expand All @@ -40,8 +40,8 @@
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/tar": "jsr:@std/tar@^0.1.4",
"@std/testing": "jsr:@std/testing@^1.0.8",
"@std/text": "jsr:@std/text@^1.0.9",
"@std/testing": "jsr:@std/testing@^1.0.9",
"@std/text": "jsr:@std/text@^1.0.10",
"@std/toml": "jsr:@std/toml@^1.0.2",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/uuid": "jsr:@std/uuid@^1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion log/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/log",
"version": "0.224.12",
"version": "0.224.13",
"exports": {
".": "./mod.ts",
"./base-handler": "./base_handler.ts",
Expand Down
2 changes: 1 addition & 1 deletion testing/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/testing",
"version": "1.0.8",
"version": "1.0.9",
"exports": {
"./bdd": "./bdd.ts",
"./mock": "./mock.ts",
Expand Down
2 changes: 1 addition & 1 deletion text/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/text",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./closest-string": "./closest_string.ts",
Expand Down

0 comments on commit 9d7608b

Please sign in to comment.