From 31c5386de1b085624ff19e218b8c1c11d69839d3 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Mon, 3 Feb 2025 20:42:02 +0000 Subject: [PATCH] v1.0.0-rc1 --- CHANGELOG.md | 5 +++++ gleam.toml | 18 +++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..000294d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## v1.0.0-rc1 - 2025-02-03 + +- Initial release, with the timestamp, calendar, and duration modules. diff --git a/gleam.toml b/gleam.toml index 3100896..8107455 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,16 +1,12 @@ name = "gleam_time" version = "1.0.0-rc1" - -# Fill out these fields if you intend to generate HTML documentation or publish -# your project to the Hex package manager. -# -# description = "" -# licences = ["Apache-2.0"] -# repository = { type = "github", user = "", repo = "" } -# links = [{ title = "Website", href = "" }] -# -# For a full reference of all the available options, you can have a look at -# https://gleam.run/writing-gleam/gleam-toml/. +description = "Work with time in Gleam!" +gleam = ">= 1.5.0" +licences = ["Apache-2.0"] +repository = { type = "github", user = "gleam-lang", repo = "time" } +links = [ + { title = "Sponsor", href = "https://github.com/sponsors/lpil" }, +] [dependencies] gleam_stdlib = ">= 0.44.0 and < 2.0.0"