Co-authored-by: dsherret <dsherret@users.noreply.github.com>
This commit is contained in:
denobot 2024-03-01 00:21:26 +01:00 committed by GitHub
parent b72ec0651e
commit 092cd46118
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
### 0.218.0 / 2024.02.29
- feat(assert): optional `reason` param for `unreachable` (#4404) (#4405)
- feat(collections): add `pick` and `omit` (#4218)
- feat(expect): add asymmetric matchers (any, anything, arrayContaining) (#4366)
- feat(uuid): add type predicate return type to validate (v4) (#4301)
- fix(fs/ensure_symlink): check symlink is pointing the given target (#4371)
- fix(log): add missing return types (#4401)
### 0.217.0 / 2024.02.22
- deprecation(semver): deprecate `==`, `===`, `!==`, and `""` operators (#4271)

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.217.0";
export const VERSION = "0.218.0";