From 79ba49dd381c08ccd33e95d7eace42757f1a6620 Mon Sep 17 00:00:00 2001 From: Wesley Kaihara Date: Fri, 21 Aug 2026 00:27:26 -0300 Subject: [PATCH 1/2] docs: add deno upgrade tip to getting started page --- runtime/index.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/runtime/index.md b/runtime/index.md index 665c51e2f..c3ec365c5 100644 --- a/runtime/index.md +++ b/runtime/index.md @@ -85,6 +85,20 @@ deno --version See [Installation](/runtime/getting_started/installation/) for package managers, Docker, and other options. +:::tip Keep Deno up to date + +Deno is constantly improving with new features and fixes. You can upgrade to the +latest version at any time with: + +```sh +deno upgrade +``` + +See [`deno upgrade`](/runtime/reference/cli/upgrade/) for channels (stable, LTS, +canary), version pinning, and more. + +::: + ## Create a project Scaffold a new project with [`deno init`](/runtime/reference/cli/init/): From d4addc00828720550945ab10a19d773daa37dfcd Mon Sep 17 00:00:00 2001 From: Wesley Kaihara Date: Fri, 21 Aug 2026 00:39:46 -0300 Subject: [PATCH 2/2] docs(runtime): update last modified date for getting started page --- runtime/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/index.md b/runtime/index.md index c3ec365c5..ef685e5a7 100644 --- a/runtime/index.md +++ b/runtime/index.md @@ -1,5 +1,5 @@ --- -last_modified: 2026-07-29 +last_modified: 2026-08-21 title: "Get started with Deno" description: "Install Deno and build your first project: why Deno, install, create, run, test, add a dependency, and use the built-in toolchain. No build step, no config." pagination_next: /runtime/getting_started/installation/