From d5e47491df9817c184d1ef7c95ce45451e72a15d Mon Sep 17 00:00:00 2001 From: Oliver Linnarsson Date: Wed, 19 Jun 2024 11:53:52 +0200 Subject: [PATCH] ops: Version 2.0.0 --- gleam.toml | 7 +++---- manifest.toml | 15 ++++----------- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/gleam.toml b/gleam.toml index 261f611..63c56cd 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,13 +1,12 @@ name = "handles" -version = "1.0.1" +version = "2.0.0" description = "Handles is a templating language written in pure Gleam. Heavily inspired by Mustache and Handlebars.js" licences = ["MIT"] repository = { type = "github", user = "olian04", repo = "gleam_handles" } - [dependencies] -gleam_stdlib = ">= 0.34.0 and < 2.0.0" +gleam_stdlib = ">= 0.38.0 and < 1.0.0" [dev-dependencies] -gleeunit = ">= 1.0.0 and < 2.0.0" +gleeunit = ">= 1.1.2 and < 2.0.0" diff --git a/manifest.toml b/manifest.toml index c1c3e7c..38d2477 100644 --- a/manifest.toml +++ b/manifest.toml @@ -2,17 +2,10 @@ # You typically do not need to edit this file packages = [ - { name = "gleam_stdlib", version = "0.38.0", build_tools = [ - "gleam", - ], requirements = [ - ], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" }, - { name = "gleeunit", version = "1.1.2", build_tools = [ - "gleam", - ], requirements = [ - "gleam_stdlib", - ], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" }, + { name = "gleam_stdlib", version = "0.38.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" }, + { name = "gleeunit", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" }, ] [requirements] -gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } -gleeunit = { version = ">= 1.0.0 and < 2.0.0" } +gleam_stdlib = { version = ">= 0.38.0 and < 1.0.0" } +gleeunit = { version = ">= 1.1.2 and < 2.0.0"}