🐿️ Type safe SQL in Gleam
62

Configure Feed

Select the types of activity you want to include in your feed.

v3.0.4

Giacomo Cavalieri (May 19, 2025, 1:52 PM +0200) f6f8cdd4 aa3ea65f

+7 -2
+5
CHANGELOG.md
··· 1 1 # CHANGELOG 2 2 3 + ## v3.0.4 - 2025-05-19 4 + 5 + - Relaxed the constraint on the `gleam_json` dependency. 6 + ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 7 + 3 8 ## v3.0.3 - 2025-04-28 4 9 5 10 - Fixed a bug where Squirrel would not be able to generate code for queries with
+1 -1
gleam.toml
··· 1 1 name = "squirrel" 2 - version = "3.0.3" 2 + version = "3.0.4" 3 3 description = "🐿️ Type safe SQL in Gleam" 4 4 licences = ["Apache-2.0"] 5 5 repository = { type = "github", user = "giacomocavalieri", repo = "squirrel" }
+1 -1
src/squirrel.gleam
··· 24 24 import squirrel/internal/query.{type TypedQuery} 25 25 import term_size 26 26 27 - const squirrel_version = "v3.0.3" 27 + const squirrel_version = "v3.0.4" 28 28 29 29 /// 🐿️ Performs code generation for your Gleam project. 30 30 ///