diff --git a/Releases.md b/Releases.md index eef9d6610..3034b9739 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,20 @@ +### 0.222.0 / 2024.04.11 + +- [unstable] BREAKING(semver): remove comparator.semver field (#4533) +- deprecate(log): deprecate internal utility methods (#4436) +- deprecation(console): copy `std/console` APIs into `std/cli` and deprecate + `std/console` (#4547) +- deprecation(crypto): rename an export to match style guide, deprecating + original and two other obsolete imports (#4525) +- deprecation(encoding): make exported function names consistent with + `std/encoding` (#4555) +- deprecation(yaml): cleanup schema exports (#4566) +- feat(expect): support `expect.addSnapshotSerialize()` api (#4537) +- feat(semver): `greaterThanRange()` and `lessThanRange()` (#4534) +- feat(testing): add `after`, `before`, `test` aliases (#4541) +- fix(cli): make the output of `promptSecret()` consistent with `prompt()` + (#4549) + ### 0.221.0 / 2024.03.27 - feat(expect): add `expect.{closeTo, stringContaining, stringMatching}` (#4508) diff --git a/version.ts b/version.ts index 4463fa708..7317c81bf 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.221.0"; +export const VERSION = "0.222.0";