Skip to content

Commit

Permalink
chore: release 2024.08.16 (#5687)
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 committed Aug 16, 2024
1 parent 233f5fe commit f7f275b
Show file tree
Hide file tree
Showing 11 changed files with 68 additions and 18 deletions.
50 changes: 50 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
### 2024.08.16

#### @std/cache 0.1.0 (minor)

- feat(cache/unstable): add `memoize()` and `LruCache` (#4725)
- fix(cache/unstable): fix flaky `memoize()` test with `FakeTime` (#5664)
- chore(cache): add `@experimental` JSDoc tag to public symbols (#5666)

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

- BREAKING(datetime): replace `utc` with `timeZone` option (#5647)
- fix(datetime): handle am / pm variants (#5406)
- refactor(datetime): cleanup `DateTimeFormatter` and `parse()` function (#5649)

#### @std/encoding 1.0.2 (patch)

- feat(encoding/unstable): `decodeBase32Hex()` and `encodeBase32Hex()` (#4931)
- test(encoding): cleanup base32 tests (#5665)

#### @std/front-matter 1.0.2 (patch)

- refactor(front-matter): remove `Extractor` type (#5659)

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

- refactor(http): use `methods` module in `file-server` module (#5668)

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

- docs(io): document `std/io` (#5656)
- refactor(io): cleanup `BufferFullError` and `PartialReadError` logic (#5657)

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

- feat(streams/unstable): `toLines()` (#5121)

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

- feat(text/unstable): add `slugify()` function (#5646)

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

- perf(uuid): make `uuidToBytes()` up to 2.5x faster (#5670)
- perf(uuid): make `bytesToUuid()` up to 100x faster (#5655)

#### @std/yaml 1.0.3 (patch)

- refactor(yaml): remove `result` property (#5684)
- refactor(yaml): move exports to import file (#5651)

### 2024.08.07

#### @std/http 1.0.2 (patch)
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.5",
"version": "0.225.0",
"exports": {
".": "./mod.ts",
"./constants": "./constants.ts",
Expand Down
18 changes: 9 additions & 9 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
"@std/crypto": "jsr:@std/crypto@^1.0.2-rc.1",
"@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.5",
"@std/datetime": "jsr:@std/datetime@^0.225.0",
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
"@std/encoding": "jsr:@std/encoding@^1.0.1",
"@std/encoding": "jsr:@std/encoding@^1.0.2",
"@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/front-matter": "jsr:@std/front-matter@^1.0.2",
"@std/fs": "jsr:@std/fs@^1.0.1",
"@std/html": "jsr:@std/html@^1.0.1",
"@std/http": "jsr:@std/http@^1.0.2",
"@std/http": "jsr:@std/http@^1.0.3",
"@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",
"@std/io": "jsr:@std/io@^0.224.5",
"@std/json": "jsr:@std/json@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.0",
"@std/log": "jsr:@std/log@^0.224.5",
Expand All @@ -42,15 +42,15 @@
"@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.1",
"@std/streams": "jsr:@std/streams@^1.0.2",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/text": "jsr:@std/text@^1.0.2",
"@std/text": "jsr:@std/text@^1.0.3",
"@std/toml": "jsr:@std/toml@^1.0.0",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/url": "jsr:@std/url@^0.225.0",
"@std/uuid": "jsr:@std/uuid@^1.0.0",
"@std/uuid": "jsr:@std/uuid@^1.0.1",
"@std/webgpu": "jsr:@std/webgpu@^0.224.5",
"@std/yaml": "jsr:@std/yaml@^1.0.2"
"@std/yaml": "jsr:@std/yaml@^1.0.3"
},
"tasks": {
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",
Expand Down
2 changes: 1 addition & 1 deletion encoding/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/encoding",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./ascii85": "./ascii85.ts",
Expand Down
2 changes: 1 addition & 1 deletion front_matter/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/front-matter",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./any": "./any.ts",
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.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
2 changes: 1 addition & 1 deletion io/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/io",
"version": "0.224.4",
"version": "0.224.5",
"exports": {
".": "./mod.ts",
"./buf-reader": "./buf_reader.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.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.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.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./closest-string": "./closest_string.ts",
Expand Down
2 changes: 1 addition & 1 deletion uuid/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/uuid",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./common": "./common.ts",
Expand Down
2 changes: 1 addition & 1 deletion yaml/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/yaml",
"version": "1.0.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down

0 comments on commit f7f275b

Please sign in to comment.