Skip to content

Commit

Permalink
chore: release 2024.05.29 (#4883)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored May 29, 2024
1 parent 7717c29 commit 673c436
Show file tree
Hide file tree
Showing 18 changed files with 120 additions and 32 deletions.
88 changes: 88 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,91 @@
### 2024.05.29

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

- fix(cli): reduce flicker in spinner render function (#4835)
- docs(cli): make check_docs pass (#4815)
- docs(cli): improve spinner.message document (#4785)
- test(cli): reduce the flakiness of `Spinner` test cases (#4844)

#### @std/data-structures 0.225.0 (minor)

- BREAKING(data-structures): hide private internals (#4827)
- docs(data-structures): enables doc lint of data-structures (#4847)

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

- docs(encoding): fix typo in `ascii85.ts` (#4854)
- docs(encoding): Cleanup and fix doc lints (#4838)
- refactor(encoding): remove unnecessary prefixes from private functions (#4862)
- refactor(encoding): rename `_util.ts` (#4860)
- test(encoding): use own `encodeHex()` and `decodeHex()` (#4863)

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

- docs(expect): document methods and add examples (#4836)

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

- docs(fmt): improve API docs (#4829)

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

- docs(front-matter): improve docs for stabilization (#4789)

#### @std/html 0.224.1 (patch)

- docs(html): improve API docs (#4878)

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

- docs(http): don't run some examples in doc checker (#4840)
- docs(http): improve docs for stabilization (#4813)

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

- BREAKING(ini): remove internal `Formatting` type (#4818)
- fix(ini): remove unused `ParseOptions.assignment` property (#4816)
- docs(ini): add missing doc comments (#4819)
- refactor(ini): move StringifyOptions to stringify.ts (#4817)

#### @std/msgpack 0.224.2 (patch)

- fix(msgpack): error on early end of data (#4831)
- docs(msgpack): complete documentation of the package (#4832)

#### @std/semver 0.224.1 (patch)

- docs(semver): improve docs (#4846)

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

- docs(streams): improve docs for stabilization (#4852)

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

- docs(text): pass docs check (#4837)
- docs(text): add module doc (#4812)

#### @std/ulid 0.224.1 (patch)

- docs(ulid): finish documentation (#4825)

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

- deprecation(uuid): deprecate `v1.generate()` signature with `buf` and `offset`
parameters (#4880)
- deprecation(uuid): rename `V1Options` to `GenerateOptions` (#4872)
- fix(uuid): validate namespace UUIDs in `v3.generate()` and `v5.generate()`
(#4874)
- docs(uuid): update module docs (#4790)
- test(uuid): add tests for invalid namespace UUID (#4875)

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

- refactor(yaml): remove dead code (#4849)
- test(yaml): test handling of omap (#4851)
- test(yaml): test float handling (#4850)

### 2024.05.22

#### @std/assert 0.225.3 (patch)
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.3",
"version": "0.224.4",
"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": "0.224.1",
"version": "0.225.0",
"exports": {
".": "./mod.ts",
"./binary-heap": "./binary_heap.ts",
Expand Down
32 changes: 16 additions & 16 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,41 +16,41 @@
"@std/assert": "jsr:@std/assert@^0.225.3",
"@std/async": "jsr:@std/async@^0.224.1",
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
"@std/cli": "jsr:@std/cli@^0.224.3",
"@std/cli": "jsr:@std/cli@^0.224.4",
"@std/collections": "jsr:@std/collections@^1.0.0-rc.1",
"@std/crypto": "jsr:@std/crypto@^0.224.0",
"@std/csv": "jsr:@std/csv@^0.224.1",
"@std/data-structures": "jsr:@std/data-structures@^0.224.1",
"@std/data-structures": "jsr:@std/data-structures@^0.225.0",
"@std/datetime": "jsr:@std/datetime@^0.224.0",
"@std/dotenv": "jsr:@std/dotenv@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^0.224.2",
"@std/expect": "jsr:@std/expect@^0.224.2",
"@std/fmt": "jsr:@std/fmt@^0.225.1",
"@std/front-matter": "jsr:@std/front-matter@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^0.224.3",
"@std/expect": "jsr:@std/expect@^0.224.3",
"@std/fmt": "jsr:@std/fmt@^0.225.2",
"@std/front-matter": "jsr:@std/front-matter@^0.224.1",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/html": "jsr:@std/html@^0.224.0",
"@std/http": "jsr:@std/http@^0.224.1",
"@std/ini": "jsr:@std/ini@^0.224.0",
"@std/html": "jsr:@std/html@^0.224.1",
"@std/http": "jsr:@std/http@^0.224.2",
"@std/ini": "jsr:@std/ini@^0.225.0",
"@std/internal": "jsr:@std/internal@^1.0.0",
"@std/io": "jsr:@std/io@^0.224.0",
"@std/json": "jsr:@std/json@^0.224.1",
"@std/jsonc": "jsr:@std/jsonc@^0.224.0",
"@std/log": "jsr:@std/log@^0.224.1",
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
"@std/msgpack": "jsr:@std/msgpack@^0.224.1",
"@std/msgpack": "jsr:@std/msgpack@^0.224.2",
"@std/net": "jsr:@std/net@^0.224.1",
"@std/path": "jsr:@std/path@^0.225.1",
"@std/regexp": "jsr:@std/regexp@^0.224.1",
"@std/semver": "jsr:@std/semver@^0.224.0",
"@std/streams": "jsr:@std/streams@^0.224.1",
"@std/semver": "jsr:@std/semver@^0.224.1",
"@std/streams": "jsr:@std/streams@^0.224.2",
"@std/testing": "jsr:@std/testing@^0.224.0",
"@std/text": "jsr:@std/text@^0.224.0",
"@std/text": "jsr:@std/text@^0.224.1",
"@std/toml": "jsr:@std/toml@^0.224.0",
"@std/ulid": "jsr:@std/ulid@^0.224.0",
"@std/ulid": "jsr:@std/ulid@^0.224.1",
"@std/url": "jsr:@std/url@^0.224.0",
"@std/uuid": "jsr:@std/uuid@^0.224.0",
"@std/uuid": "jsr:@std/uuid@^0.224.3",
"@std/webgpu": "jsr:@std/webgpu@^0.224.2",
"@std/yaml": "jsr:@std/yaml@^0.224.0"
"@std/yaml": "jsr:@std/yaml@^0.224.1"
},
"tasks": {
"test": "RUST_BACKTRACE=1 deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks",
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": "0.224.2",
"version": "0.224.3",
"exports": {
".": "./mod.ts",
"./ascii85": "./ascii85.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": "0.224.2",
"version": "0.224.3",
"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": "0.225.1",
"version": "0.225.2",
"exports": {
"./bytes": "./bytes.ts",
"./colors": "./colors.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": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./any": "./any.ts",
Expand Down
2 changes: 1 addition & 1 deletion html/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/html",
"version": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./entities": "./entities.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": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
2 changes: 1 addition & 1 deletion ini/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/ini",
"version": "0.224.0",
"version": "0.225.0",
"exports": {
".": "./mod.ts",
"./ini-map": "./ini_map.ts",
Expand Down
2 changes: 1 addition & 1 deletion msgpack/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/msgpack",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./decode": "./decode.ts",
Expand Down
2 changes: 1 addition & 1 deletion semver/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/semver",
"version": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./can-parse": "./can_parse.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.1",
"version": "0.224.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": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./case": "./case.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": "0.224.0",
"version": "0.224.1",
"exports": "./mod.ts"
}
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": "0.224.2",
"version": "0.224.3",
"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": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down

0 comments on commit 673c436

Please sign in to comment.