From 1693073c771b59fea7d19f58d7817b53d9852d0c Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Wed, 21 Aug 2024 14:33:20 +0100 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 2 +- gleam.toml | 2 +- src/wisp.gleam | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8ad70..12b7cfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v0.17.0 - Unreleased +## v1.0.0 - Unreleased - The Mist web server related functions have been moved to the `wisp_mist` module. diff --git a/gleam.toml b/gleam.toml index 72eb29f..32465d9 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,5 +1,5 @@ name = "wisp" -version = "0.16.0" +version = "1.0.0" gleam = ">= 0.32.0" description = "A practical web framework for Gleam" licences = ["Apache-2.0"] diff --git a/src/wisp.gleam b/src/wisp.gleam index e62a04d..42b654f 100644 --- a/src/wisp.gleam +++ b/src/wisp.gleam @@ -1541,7 +1541,7 @@ pub fn handle_head( /// Create a new temporary directory for the given request. /// -/// If you are using the `mist_handler` function or another compliant web server +/// If you are using the Mist adapter or another compliant web server /// adapter then this file will be deleted for you when the request is complete. /// Otherwise you will need to call the `delete_temporary_files` function /// yourself. @@ -1558,7 +1558,7 @@ pub fn new_temporary_file( /// Delete any temporary files created for the given request. /// -/// If you are using the `mist_handler` function or another compliant web server +/// If you are using the Mist adapter or another compliant web server /// adapter then this file will be deleted for you when the request is complete. /// Otherwise you will need to call this function yourself. ///