diff options
author | 2022-10-09 19:33:07 -0700 | |
---|---|---|
committer | 2022-10-09 19:33:07 -0700 | |
commit | 50d4cedd92f91b9e108362eb802cdd5bf31b90f4 (patch) | |
tree | 0f3aba899a6779369114dff15cf8dec1c316fbad | |
parent | 27ad376071bcea6f130db1118cd4717086101e23 (diff) | |
download | bun-50d4cedd92f91b9e108362eb802cdd5bf31b90f4.tar.gz bun-50d4cedd92f91b9e108362eb802cdd5bf31b90f4.tar.zst bun-50d4cedd92f91b9e108362eb802cdd5bf31b90f4.zip |
Add section about upgrading in the readme
-rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -38,6 +38,20 @@ docker run --rm --init --ulimit memlock=-1:-1 jarredsumner/bun:edge If using Linux, kernel version 5.6 or higher is strongly recommended, but the minimum is 5.1. +## Upgrade + +To upgrade to the latest version of Bun, run: + +```sh +bun upgrade +``` + +Bun automatically releases a canary build on every commit to `main`. To upgrade to the latest canary build, run: + +```sh +bun upgrade --canary +``` + ## Table of Contents - [Install](#install) |