Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
denobot 2023-04-27 22:39:26 +02:00 committed by GitHub
parent 934cb11a7e
commit 92d1fb8ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 3 deletions

View File

@ -91,8 +91,10 @@ jobs:
- name: Check Deprecations
run: "deno task lint:deprecations"
- name: Check Import paths in Docs
run: "deno task lint:doc-imports"
# TODO(bartlomieju): temporarily disabled, because it relies on
# `Deno[Deno.internal].core`, which was removed in v1.33.0.
# - name: Check Import paths in Docs
# run: "deno task lint:doc-imports"
- name: Check non-test assertions
run: deno task lint:check-assertions

View File

@ -1,3 +1,12 @@
### 0.185.0 / 2023.04.27
- feat(dotenv): allow reading from `.env` files without granting env access
(#3306)
- feat(jsonc): annotate return types (#3327)
- feat(uuid): uuid v3 (#3324)
- perf(http/file_server): avoid calculating Content-Type when 304 Not Modified
response (#3323)
### 0.184.0 / 2023.04.18
- BREAKING(encoding): remove deprecated APIs (#3303)

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.184.0";
export const VERSION = "0.185.0";