Co-authored-by: littledivy <littledivy@users.noreply.github.com>
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
This commit is contained in:
denobot 2023-11-10 03:13:59 -08:00 committed by GitHub
parent af6c2d66f3
commit b317958793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,19 @@
### 0.206.0 / 2023.11.10
- BREAKING(async): deprecate `deferred()` in favor of `Promise.withResolvers()`
(#3758)
- BREAKING(encoding): remove deprecated binary APIs (#3763)
- BREAKING(path): split up glob into multiple files
- add `deno fmt --check`
- feat(testing/mock): enable `spy` to accept a class constructor (#3766)
- feat: `ServerSentEventStream()` (#3751)
- feat: add `std/text` with word-similarity helpers (#3488)
- fix(fmt): format duration rounding error. (#3762)
- fix(msgpack): encode huge objects (#3698)
- fix: broken import
- fix: rework file server tests (#3779)
- perf(streams): add single-character fast path for `DelimiterStream()` (#3739)
### 0.205.0 / 2023.11.01
- BREAKING(dotenv): remove deprecated `restrictEnvAccessTo` option (#3705)

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.205.0";
export const VERSION = "0.206.0";