diff --git a/Releases.md b/Releases.md index 28345aad8743..fab104978b92 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,12 @@ +### 0.102.0 / 2021.07.19 + +- feat: Add std/collections (#993) +- fix(encoding/toml): fix comment line starting with whitespaces (#1017) +- fix(encoding/toml): parse keys correctly (#1019) +- fix(hash): fix handling of non-byte-sized TypedArray views (#1012) +- fix(testing): Don't merge diff when it's not spaces even if it's surrounded by + word-diff (#1032) + ### 0.101.0 / 2021.07.13 - BREAKING(encoding/hex): remove encodedLen, encodeToString, decodedLen, diff --git a/version.ts b/version.ts index 0570937ebc5f..0fa1d3cd18f5 100644 --- a/version.ts +++ b/version.ts @@ -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.101.0"; +export const VERSION = "0.102.0";