This commit is contained in:
Bartek Iwańczuk 2021-07-26 14:38:51 +02:00 committed by GitHub
parent 68a671f2bb
commit 223ec620dd
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.103.0 / 2021.07.26
- feat(async): add status to deferred promises (#1047)
- feat(http): add range request and etag support to `file_server.ts` (#1028)
- fix(async/deferred): rename .status -> .state (#1055)
- fix(encoding/base64url): throw TypeError in case of invalid base64url string
(#1040)
- fix(encoding/toml): fix inline table and nested array (#1042)
- fix(encoding/yaml): fix `parseAll` type definition by using overloads (#1048)
- fix(testing): `assertThrowsAsync` always reporting `Error` instead of actual
error class (#1051)
- fix(testing/asserts): cater for different class constructor functions (#1000)
### 0.102.0 / 2021.07.19
- feat: Add std/collections (#993)

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.102.0";
export const VERSION = "0.103.0";