Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 21, 2024
1 parent 8e28f75 commit 1693073
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions src/wisp.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
///
Expand Down

0 comments on commit 1693073

Please sign in to comment.