From 8e28f75129a6cc792b712195b41237bb079136e4 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Wed, 21 Aug 2024 14:28:20 +0100 Subject: [PATCH] Update versions in examples --- examples/00-hello-world/gleam.toml | 2 +- examples/01-routing/gleam.toml | 2 +- examples/02-working-with-form-data/gleam.toml | 2 +- examples/03-working-with-json/gleam.toml | 2 +- examples/04-working-with-other-formats/gleam.toml | 2 +- examples/05-using-a-database/gleam.toml | 2 +- examples/06-serving-static-assets/gleam.toml | 2 +- examples/07-logging/gleam.toml | 2 +- examples/08-working-with-cookies/gleam.toml | 2 +- examples/09-configuring-default-responses/gleam.toml | 2 +- examples/10-working-with-files/gleam.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/00-hello-world/gleam.toml b/examples/00-hello-world/gleam.toml index 25867b5..cce0430 100644 --- a/examples/00-hello-world/gleam.toml +++ b/examples/00-hello-world/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" [dev-dependencies] diff --git a/examples/01-routing/gleam.toml b/examples/01-routing/gleam.toml index ade76ae..e24f9cd 100644 --- a/examples/01-routing/gleam.toml +++ b/examples/01-routing/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/02-working-with-form-data/gleam.toml b/examples/02-working-with-form-data/gleam.toml index ade76ae..e24f9cd 100644 --- a/examples/02-working-with-form-data/gleam.toml +++ b/examples/02-working-with-form-data/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/03-working-with-json/gleam.toml b/examples/03-working-with-json/gleam.toml index edf9bfa..e78f52e 100644 --- a/examples/03-working-with-json/gleam.toml +++ b/examples/03-working-with-json/gleam.toml @@ -8,7 +8,7 @@ gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_json = "~> 0.6" gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/04-working-with-other-formats/gleam.toml b/examples/04-working-with-other-formats/gleam.toml index 475b13a..20d6a3d 100644 --- a/examples/04-working-with-other-formats/gleam.toml +++ b/examples/04-working-with-other-formats/gleam.toml @@ -8,7 +8,7 @@ gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gsv = "~> 1.0" gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/05-using-a-database/gleam.toml b/examples/05-using-a-database/gleam.toml index a4b06dd..dba2222 100644 --- a/examples/05-using-a-database/gleam.toml +++ b/examples/05-using-a-database/gleam.toml @@ -9,7 +9,7 @@ wisp = { path = "../.." } gleam_json = "~> 0.6" tiny_database = { path = "../utilities/tiny_database" } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/06-serving-static-assets/gleam.toml b/examples/06-serving-static-assets/gleam.toml index ade76ae..e24f9cd 100644 --- a/examples/06-serving-static-assets/gleam.toml +++ b/examples/06-serving-static-assets/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/07-logging/gleam.toml b/examples/07-logging/gleam.toml index c64fed3..f36f84d 100644 --- a/examples/07-logging/gleam.toml +++ b/examples/07-logging/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = "~> 1.0" +mist = ">= 2.0.0 and < 3.0.0" [dev-dependencies] gleeunit = "~> 1.0" diff --git a/examples/08-working-with-cookies/gleam.toml b/examples/08-working-with-cookies/gleam.toml index b6a2cc5..419c49a 100644 --- a/examples/08-working-with-cookies/gleam.toml +++ b/examples/08-working-with-cookies/gleam.toml @@ -8,7 +8,7 @@ gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_crypto = "~> 1.0" gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies] diff --git a/examples/09-configuring-default-responses/gleam.toml b/examples/09-configuring-default-responses/gleam.toml index 12947bd..883baa0 100644 --- a/examples/09-configuring-default-responses/gleam.toml +++ b/examples/09-configuring-default-responses/gleam.toml @@ -6,7 +6,7 @@ gleam = ">= 0.32.0" [dependencies] gleam_stdlib = "~> 0.30" wisp = { path = "../.." } -mist = "~> 1.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_erlang = "~> 0.23" [dev-dependencies] diff --git a/examples/10-working-with-files/gleam.toml b/examples/10-working-with-files/gleam.toml index ade76ae..e24f9cd 100644 --- a/examples/10-working-with-files/gleam.toml +++ b/examples/10-working-with-files/gleam.toml @@ -7,7 +7,7 @@ gleam = ">= 0.32.0" gleam_stdlib = "~> 0.30" wisp = { path = "../.." } gleam_erlang = "~> 0.23" -mist = ">= 1.2.0 and < 2.0.0" +mist = ">= 2.0.0 and < 3.0.0" gleam_http = "~> 3.5" [dev-dependencies]