Skip to content

Commit

Permalink
chore: release 2024.08.07 (#5650)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
  • Loading branch information
denobot and kt3k authored Aug 7, 2024
1 parent 602396a commit ce02d49
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 10 deletions.
32 changes: 32 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
### 2024.08.07

#### @std/archive 0.225.0 (minor)

- BREAKING(archive): remove `TarEntry.#header` (#5638)
- fix(archive): make `data` property private in `Tar` (#5645)
- fix(archive): make `block` and `reader` properties in `Untar` private (#5637)
- docs(archive): mark public APIs as unstable/experimental (#5639)

#### @std/csv 1.0.1 (patch)

- fix(csv,streams): use string arrays in `ReadableStream.from()` in docs and
tests (#5635)

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

- refactor(datetime): remove `Tokenizer` class (#5622)

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

- feat(http/unstable): `route` module (#5644)
- feat(http/unstable): `headers` module (#4317)
- feat(http/unstable): `methods` module (#4320)
- fix(http): handle wrong request method correctly (#5643)
- refactor(http): use `headers` module in `file-server` module (#5642)

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

- feat(streams/unstable): `FixedChunkStream` (#4995)
- fix(csv,streams): use string arrays in `ReadableStream.from()` in docs and
tests (#5635)

### 2024.08.05

#### @std/async 1.0.3 (patch)
Expand Down
2 changes: 1 addition & 1 deletion archive/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/archive",
"version": "0.224.3",
"version": "0.225.0",
"exports": {
".": "./mod.ts",
"./tar": "./tar.ts",
Expand Down
2 changes: 1 addition & 1 deletion csv/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/csv",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./parse": "./parse.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.224.4",
"version": "0.224.5",
"exports": {
".": "./mod.ts",
"./constants": "./constants.ts",
Expand Down
10 changes: 5 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
"graphviz": "npm:node-graphviz@^0.1.1",

"@std/archive": "jsr:@std/archive@^0.224.3",
"@std/archive": "jsr:@std/archive@^0.225.0",
"@std/assert": "jsr:@std/assert@^1.0.2",
"@std/async": "jsr:@std/async@^1.0.3",
"@std/bytes": "jsr:@std/bytes@^1.0.2-rc.3",
"@std/cli": "jsr:@std/cli@^1.0.3",
"@std/collections": "jsr:@std/collections@^1.0.5",
"@std/crypto": "jsr:@std/crypto@^1.0.2-rc.1",
"@std/csv": "jsr:@std/csv@^1.0.0",
"@std/csv": "jsr:@std/csv@^1.0.1",
"@std/data-structures": "jsr:@std/data-structures@^1.0.1",
"@std/datetime": "jsr:@std/datetime@^0.224.4",
"@std/datetime": "jsr:@std/datetime@^0.224.5",
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
"@std/encoding": "jsr:@std/encoding@^1.0.1",
"@std/expect": "jsr:@std/expect@^1.0.0",
"@std/fmt": "jsr:@std/fmt@^1.0.0",
"@std/front-matter": "jsr:@std/front-matter@^1.0.1",
"@std/fs": "jsr:@std/fs@^1.0.1",
"@std/html": "jsr:@std/html@^1.0.1",
"@std/http": "jsr:@std/http@^1.0.0",
"@std/http": "jsr:@std/http@^1.0.1",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.3",
"@std/internal": "jsr:@std/internal@^1.0.1",
"@std/io": "jsr:@std/io@^0.224.4",
Expand All @@ -42,7 +42,7 @@
"@std/path": "jsr:@std/path@^1.0.2",
"@std/regexp": "jsr:@std/regexp@^1.0.0",
"@std/semver": "jsr:@std/semver@^1.0.1",
"@std/streams": "jsr:@std/streams@^1.0.0",
"@std/streams": "jsr:@std/streams@^1.0.1",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/text": "jsr:@std/text@^1.0.2",
"@std/toml": "jsr:@std/toml@^1.0.0",
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": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.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": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",
Expand Down

0 comments on commit ce02d49

Please sign in to comment.