🐿️ Type safe SQL in Gleam
76

Configure Feed

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

v4.2.0

Giacomo Cavalieri (Jul 31, 2025, 3:42 PM +0200) 89e083aa ead2f754

+3 -3
+1 -1
CHANGELOG.md
··· 1 1 # CHANGELOG 2 2 3 - ## Unreleased 3 + ## 4.2.0 - 2025-07-31 4 4 5 5 - Before writing the generated queries, Squirrel will make sure to not overwrite 6 6 any file that was not automatically generated.
+1 -1
gleam.toml
··· 1 1 name = "squirrel" 2 - version = "4.1.0" 2 + version = "4.2.0" 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 = "v4.1.0" 27 + const squirrel_version = "v4.2.0" 28 28 29 29 /// 🐿️ Performs code generation for your Gleam project. 30 30 ///