Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
denobot 2022-04-20 21:36:27 -04:00 committed by GitHub
parent 2ab48c9aa7
commit 1d82ccc6f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,12 @@
### 0.136.0 / 2022.04.21
- feat(testing): Implement "assertSnapshot" (#2039)
- feat(testing): add TestContext argument to "it" function (#2117)
- fix(http): use the `addEventListener` method instead of `onabort` properties
(#2124)
- fix(node/crypto): fix randomInt (#2101)
- perf(http): optimize file server (#2116)
### 0.135.0 / 2022.04.14
- BREAKING(io/readers): use an array as a MultiReader constructor parameter to

View File

@ -20,7 +20,7 @@ releasesMdFile.updateWithGitLog({
});
// run deno fmt
await repo.runCommandWithOutput(["deno", "fmt"]);
await repo.runCommandWithOutput(["deno", "fmt", "Releases.md"]);
function getVersionIncrementKind() {
if (Deno.args.some((a) => a === "--patch")) {

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.135.0";
export const VERSION = "0.136.0";