This commit is contained in:
Divy Srivastava 2022-01-20 18:57:18 +05:30 committed by GitHub
parent 86defe5181
commit 8b26064793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,16 @@
### 0.122.0 / 2022.01.20
- BREAKING(encoding/csv): add return type to csv's parse and remove a parse func
from args (#1724)
- feat(node): add Timeout class (#1699)
- feat(node): provide node compatible timer APIs in commonjs wrapper (#1834)
- fix(log): flush to file when buffer is full (#1782)
- fix(node): fix fs.write/fs.writeAll (#1832)
- fix(node): make stdio streams optional if not present on Deno namespace
(#1829)
- fix(node/net): setNoDelay and setKeepAlive no-ops (#1828)
- fix(node/timers): work around |this| check in deno (#1827)
### 0.121.0 / 2022.01.12
- feat(crypto): add md4 hash (#1799)

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.121.0";
export const VERSION = "0.122.0";