Co-authored-by: levex <levex@users.noreply.github.com>
This commit is contained in:
denobot 2023-04-12 16:17:59 +02:00 committed by GitHub
parent 016b452409
commit 40d78a1fbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,17 @@
### 0.183.0 / 2023.04.12
- BREAKING(csv): rename `CsvStream` to `CsvParseStream` (#3287)
- BREAKING(encoding/varint): remove deprecated APIs (#3282)
- feat(datetime): add isUtcLeap (#3295)
- feat: add http/etag (#3245)
- fix(bytes): correct slice() of BytesList (#3292)
- fix(csv): improve typing for CSV parser (#3267)
- fix(dotenv): allow `null` for `*path` values (#3221)
- fix(encoding/ascii85): fix `encode()` returns a wrong result with a subarray
(#3310)
- fix(fs): fix NotFound error when moving src to itself with overwrite: true
(#3289)
### 0.182.0 / 2023.03.31
- feat(csv): add `CsvStringifyStream` (#3270)

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.182.0";
export const VERSION = "0.183.0";