This commit is contained in:
denobot 2022-08-04 12:48:15 -07:00 committed by GitHub
parent a03533fa7a
commit 8379497298
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,9 @@
### 0.151.0 / 2022.08.04
- fix(node): fs.existsSync never throws (#2495)
- fix(node/fs): add watchFile & unwatchFile (#2477)
- fix(node/http,https): set the url protocol by default (#2480)
### 0.150.0 / 2022.07.28
- feat(http/http_errors): add headers property (#2462)

View File

@ -208,7 +208,6 @@ snapshot[`Snapshot Test - Options > mode 1`] = `
snapshot[`Snapshot Test - Options > mode 2`] = `
"running 1 test from <tempDir>/test.ts
snapshot ... ok (--ms)
------- output -------
> 1 snapshots updated.
@ -221,7 +220,6 @@ ok | 1 passed | 0 failed (--ms)
snapshot[`Snapshot Test - Update - New snapshot 1`] = `
"running 1 test from <tempDir>/test.ts
Snapshot Test - Update ... ok (--ms)
------- output -------
> 1 snapshots updated.
@ -267,7 +265,6 @@ snapshot[\`Snapshot Test - Update 1\`] = \`
snapshot[`Snapshot Test - Update - Existing snapshot - updates 1`] = `
"running 1 test from <tempDir>/test.ts
Snapshot Test - Update ... ok (--ms)
------- output -------
> 1 snapshots updated.
@ -295,7 +292,6 @@ snapshot[`Snapshot Test - Update - Existing snapshots - reverse order 1 1`] = `
"running 2 tests from <tempDir>/test.ts
Snapshot Test - First ... ok (--ms)
Snapshot Test - Second ... ok (--ms)
------- output -------
> 2 snapshots updated.

View File

@ -5,4 +5,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
export const VERSION = "0.150.0";
export const VERSION = "0.151.0";