mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
chore: release 2024.08.05 (#5632)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
This commit is contained in:
parent
4f29e70319
commit
fdadd531af
27
Releases.md
27
Releases.md
@ -1,3 +1,30 @@
|
||||
### 2024.08.05
|
||||
|
||||
#### @std/async 1.0.3 (patch)
|
||||
|
||||
- fix(async): abortable should not change original outputs (#5609)
|
||||
|
||||
#### @std/cli 1.0.3 (patch)
|
||||
|
||||
- refactor(cli): minor cleanups (#5628)
|
||||
- refactor(cli): `isNumber()` (#5607)
|
||||
|
||||
#### @std/csv 1.0.0 (major)
|
||||
|
||||
- chore(csv): release `csv@1.0.0` (#5219)
|
||||
|
||||
#### @std/semver 1.0.1 (patch)
|
||||
|
||||
- docs(semver): remove diagram line overlaps (#5624)
|
||||
|
||||
#### @std/url 0.225.0 (major)
|
||||
|
||||
- chore(url): release `url@0.225.0` (#5631)
|
||||
|
||||
#### @std/yaml 1.0.2 (patch)
|
||||
|
||||
- refactor(yaml): move functions to class methods (#5625)
|
||||
|
||||
### 2024.08.02
|
||||
|
||||
#### @std/assert 1.0.2 (patch)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/async",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./abortable": "./abortable.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/cli",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse-args": "./parse_args.ts",
|
||||
|
@ -14,9 +14,9 @@
|
||||
|
||||
"@std/archive": "jsr:@std/archive@^0.224.3",
|
||||
"@std/assert": "jsr:@std/assert@^1.0.2",
|
||||
"@std/async": "jsr:@std/async@^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.2",
|
||||
"@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",
|
||||
@ -41,7 +41,7 @@
|
||||
"@std/net": "jsr:@std/net@^1.0.0",
|
||||
"@std/path": "jsr:@std/path@^1.0.2",
|
||||
"@std/regexp": "jsr:@std/regexp@^1.0.0",
|
||||
"@std/semver": "jsr:@std/semver@^1.0.0",
|
||||
"@std/semver": "jsr:@std/semver@^1.0.1",
|
||||
"@std/streams": "jsr:@std/streams@^1.0.0",
|
||||
"@std/testing": "jsr:@std/testing@^1.0.0",
|
||||
"@std/text": "jsr:@std/text@^1.0.2",
|
||||
@ -50,7 +50,7 @@
|
||||
"@std/url": "jsr:@std/url@^0.225.0",
|
||||
"@std/uuid": "jsr:@std/uuid@^1.0.0",
|
||||
"@std/webgpu": "jsr:@std/webgpu@^0.224.5",
|
||||
"@std/yaml": "jsr:@std/yaml@^1.0.1"
|
||||
"@std/yaml": "jsr:@std/yaml@^1.0.2"
|
||||
},
|
||||
"tasks": {
|
||||
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/semver",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./can-parse": "./can_parse.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/yaml",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse": "./parse.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user