mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
parent
2ab48c9aa7
commit
1d82ccc6f7
@ -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
|
||||
|
@ -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")) {
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user