Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 21, 2023
1 parent 8919c76 commit 57d793c
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.3.0 - Unreleased
## v0.3.0 - 2023-08-21

- The `mist_service` function has been renamed to `mist_handler`.
- The `method_not_allowed` function gains the `allowed` label for its argument.
Expand Down
4 changes: 2 additions & 2 deletions examples/2-reading-form-data/src/app/router.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ pub fn show_form() -> Response {
let html =
string_builder.from_string(
"<form method='post'>
<label for='name'>Title:
<label>Title:
<input type='text' name='title'>
</label>
<label for='name'>Name:
<label>Name:
<input type='text' name='name'>
</label>
<input type='submit' value='Submit'>
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.2.0"
version = "0.3.0"
gleam = ">= 0.30.0"
description = "A fun and practical web framework for Gleam"
licences = ["Apache-2.0"]
Expand Down

0 comments on commit 57d793c

Please sign in to comment.