Skip to content

Commit

Permalink
0.197.0 (#3514)
Browse files Browse the repository at this point in the history
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
  • Loading branch information
3 people authored Aug 3, 2023
1 parent 3830a00 commit d84f4b1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.197.0 / 2023.08.03

- BREAKING(testing/snapshot): change tab char serialization (#3447)
- BREAKING(testing/snapshot): fix regression of serialization of long strings
(#3507)
- feat(fs/walk): include symlink option (#3464)
- fix(toml/parse): fix edge cases (#3509)

### 0.196.0 / 2023.07.26

- BREAKING(http/server): deprecate serve and serveTls (#3381)
Expand Down
2 changes: 1 addition & 1 deletion dotenv/mod_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ Deno.test(
assertThrows(
() => loadSync(optsOnlyEnvPath),
Deno.errors.PermissionDenied,
`Requires env access to all, run again with the --allow-env flag`,
`Requires env access, run again with the --allow-env flag`,
);
});
},
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.196.0";
export const VERSION = "0.197.0";

0 comments on commit d84f4b1

Please sign in to comment.