Skip to content

Commit

Permalink
chore: release 2024.06.17 (#5062)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Jun 17, 2024
1 parent 7867a60 commit cea0a14
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 12 deletions.
42 changes: 42 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
### 2024.06.17

#### @std/async 1.0.0-rc.1 (prerelease)

- BREAKING(async): stop exporting ERROR_WHILE_MAPPING_MESSAGE (#5041)
- docs(async): improve module docs (#5039)
- docs(async): avoid memory leak in example (#5040)
- chore(async): release `[email protected]` (#5035)
- chore(async): mark `Tuple` and `TupleOf` as `@internal` (#5042)

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

- refactor(cli): minor cleanups (#5052)
- test(cli): improve spinner test coverage (#5047)
- test(cli): improve test coverage (#5046)

#### @std/http 0.224.5 (patch)

- feat(http): support partitioned cookies (#5044)

#### @std/msgpack 1.0.0-rc.1 (prerelease)

- chore(msgpack): release `[email protected]` (#5030)

#### @std/path 1.0.0-rc.2 (prerelease)

- test(path): improve test coverage (#5038)

#### @std/streams 0.224.5 (patch)

- chore(streams): remove unused test util (#5048)

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

- docs(testing): improve the docs of `@std/testing` (#5033)
- refactor(testing): remove use of `public` keyword (#5051)

#### @std/ulid 1.0.0-rc.2 (prerelease)

- refactor(ulid): remove `len` argument from `encodeTime()` and `encodeRandom()`
(#5054)

### 2024.06.12

#### @std/assert 1.0.0-rc.2 (prerelease)
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": "0.224.6",
"version": "0.224.7",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
12 changes: 6 additions & 6 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@std/assert": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/async@^1.0.0-rc.1",
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
"@std/cli": "jsr:@std/cli@^0.224.6",
"@std/cli": "jsr:@std/cli@^0.224.7",
"@std/collections": "jsr:@std/collections@^1.0.0-rc.1",
"@std/crypto": "jsr:@std/crypto@^1.0.0-rc.1",
"@std/csv": "jsr:@std/csv@^0.224.3",
Expand All @@ -29,7 +29,7 @@
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
"@std/fs": "jsr:@std/fs@^0.229.3",
"@std/html": "jsr:@std/html@^1.0.0-rc.1",
"@std/http": "jsr:@std/http@^0.224.4",
"@std/http": "jsr:@std/http@^0.224.5",
"@std/ini": "jsr:@std/ini@^0.225.1",
"@std/internal": "jsr:@std/internal@^1.0.0",
"@std/io": "jsr:@std/io@^0.224.1",
Expand All @@ -39,14 +39,14 @@
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
"@std/msgpack": "jsr:@std/msgpack@^1.0.0-rc.1",
"@std/net": "jsr:@std/net@^0.224.3",
"@std/path": "jsr:@std/[email protected].1",
"@std/path": "jsr:@std/[email protected].2",
"@std/regexp": "jsr:@std/regexp@^1.0.0-rc.1",
"@std/semver": "jsr:@std/semver@^0.224.3",
"@std/streams": "jsr:@std/streams@^0.224.4",
"@std/testing": "jsr:@std/testing@^0.225.1",
"@std/streams": "jsr:@std/streams@^0.224.5",
"@std/testing": "jsr:@std/testing@^0.225.2",
"@std/text": "jsr:@std/text@^1.0.0-rc.1",
"@std/toml": "jsr:@std/toml@^1.0.0-rc.1",
"@std/ulid": "jsr:@std/ulid@^1.0.0-rc.1",
"@std/ulid": "jsr:@std/ulid@^1.0.0-rc.2",
"@std/url": "jsr:@std/url@^1.0.0-rc.1",
"@std/uuid": "jsr:@std/[email protected]",
"@std/webgpu": "jsr:@std/webgpu@^0.224.4",
Expand Down
2 changes: 1 addition & 1 deletion http/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/http",
"version": "0.224.4",
"version": "0.224.5",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
2 changes: 1 addition & 1 deletion path/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/path",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"exports": {
".": "./mod.ts",
"./basename": "./basename.ts",
Expand Down
2 changes: 1 addition & 1 deletion streams/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/streams",
"version": "0.224.4",
"version": "0.224.5",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.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": "0.225.1",
"version": "0.225.2",
"exports": {
"./asserts": "./asserts.ts",
"./bdd": "./bdd.ts",
Expand Down
2 changes: 1 addition & 1 deletion ulid/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@std/ulid",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"exports": "./mod.ts"
}

0 comments on commit cea0a14

Please sign in to comment.