🧚 A practical web framework for Gleam

fix!: Bump gleam version constraint from 0.32.0 to 1.1.0 to allow `@internal` usage

Gleam 1.5.0rc1 produce a new build warning because wisp targets gleam >= 0.32.0
but gleam_otp and glisten make use of `@internal` annotations.

> The `@internal` annotation was introduced in version v1.1.0. But the Gleam
version range specified in your `gleam.toml` would allow this code to run
on an earlier version like v0.32.0, resulting in compilation errors!

authored by ducdetronquito and committed by Louis Pilfold 9daa80c1 3440b9d9

Changed files
+5 -1
+4
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## v1.2.0 - Unreleased 4 + 5 + - Breaking change - Update minimal gleam target version to 1.1.0 6 + 3 7 ## v1.1.0 - 2024-08-23 4 8 5 9 - Rather than using `/tmp`, the platform-specific temporary directory is
+1 -1
gleam.toml
··· 1 1 name = "wisp" 2 2 version = "1.1.0" 3 - gleam = ">= 0.32.0" 3 + gleam = ">= 1.1.0" 4 4 description = "A practical web framework for Gleam" 5 5 licences = ["Apache-2.0"] 6 6