From a3ceda93124a8b31de1833c70f9fcaa5f193aab8 Mon Sep 17 00:00:00 2001 From: Jason Sipula Date: Thu, 15 Aug 2024 22:56:56 -0700 Subject: [PATCH] docs(manager/gleam): fix readme formatting (#30569) --- lib/modules/manager/gleam/readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/modules/manager/gleam/readme.md b/lib/modules/manager/gleam/readme.md index 183a8db811913e..f2b86354cc92b8 100644 --- a/lib/modules/manager/gleam/readme.md +++ b/lib/modules/manager/gleam/readme.md @@ -15,12 +15,13 @@ The `gleam` manager, however, uses `gleam` itself to keep `manifest.toml` up-to- Renovate's `"auto"` strategy defaults to `"widen"` and works like this for `gleam`: + 1. If an existing range is a complex range (contains multiple range specifications), Renovate widens it to include the new version. - - Example: `>= 0.14.0 and < 0.15.0` becomes `>= 0.14.0 and < 0.16.1` for a new `0.16.0` version. + - Example: `>= 0.14.0 and < 0.15.0` becomes `>= 0.14.0 and < 0.16.1` for a new `0.16.0` version. 1. For simple ranges, if the update is outside the existing range, Renovate widens the range to include the new version. - - Example: `<= 0.38.0` becomes `<= 0.39.0` for a new `0.39.0` version. + - Example: `<= 0.38.0` becomes `<= 0.39.0` for a new `0.39.0` version. 1. For exact version constraints, Renovate replaces the version with the new one. - - Example: `== 0.12.0` becomes `== 0.13.0` for a new `0.13.0` version. + - Example: `== 0.12.0` becomes `== 0.13.0` for a new `0.13.0` version. !!! warning