Skip to content

Commit 899b48e

Browse files
committed
v0.14.0
1 parent fbbb35c commit 899b48e

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.14.0 - 2024-03-28
4+
5+
- The `mist` version constraint has been relaxed to permit 0.x or 1.x versions.
6+
37
## v0.13.0 - 2024-03-23
48

59
- The `wisp` module gains the `file_download_from_memory` and `file_download`

examples/utilities/tiny_database/src/tiny_database.gleam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import gleam/result
1+
import gleam/dict.{type Dict}
22
import gleam/dynamic
3-
import ids/nanoid
43
import gleam/json
54
import gleam/list
6-
import gleam/dict.{type Dict}
5+
import gleam/result
6+
import ids/nanoid
77
import simplifile
88

99
pub opaque type Connection {

examples/utilities/tiny_database/test/tiny_database_test.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import gleam/map
12
import gleeunit
23
import gleeunit/should
34
import tiny_database
4-
import gleam/map
55

66
pub fn main() {
77
gleeunit.main()

gleam.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "wisp"
2-
version = "0.13.0"
2+
version = "0.14.0"
33
gleam = ">= 0.32.0"
44
description = "A practical web framework for Gleam"
55
licences = ["Apache-2.0"]
@@ -16,7 +16,7 @@ gleam_erlang = "~> 0.21"
1616
gleam_http = "~> 3.5"
1717
gleam_json = "~> 0.6 or ~> 1.0"
1818
gleam_stdlib = "~> 0.29 or ~> 1.0"
19-
mist = "~> 0.13"
19+
mist = "~> 0.13 or ~> 1.0"
2020
simplifile = "~> 1.4"
2121
marceau = "~> 1.1"
2222
logging = "~> 1.0"

src/wisp.gleam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
import exception
2-
import gleam/bytes_builder.{type BytesBuilder}
32
import gleam/bit_array
43
import gleam/bool
5-
import gleam/dict.{type Dict}
4+
import gleam/bytes_builder.{type BytesBuilder}
65
import gleam/crypto
6+
import gleam/dict.{type Dict}
77
import gleam/dynamic.{type Dynamic}
88
import gleam/erlang
9+
import gleam/erlang/atom.{type Atom}
910
import gleam/http.{type Method}
1011
import gleam/http/cookie
1112
import gleam/http/request.{type Request as HttpRequest}
1213
import gleam/http/response.{
1314
type Response as HttpResponse, Response as HttpResponse,
1415
}
1516
import gleam/int
16-
import gleam/erlang/atom.{type Atom}
1717
import gleam/json
1818
import gleam/list
1919
import gleam/option.{type Option}

test/wisp_test.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import gleam/bit_array
22
import gleam/crypto
3+
import gleam/dict
34
import gleam/dynamic.{type Dynamic}
45
import gleam/erlang
56
import gleam/http
67
import gleam/http/request
78
import gleam/http/response.{Response}
89
import gleam/int
910
import gleam/list
10-
import gleam/dict
1111
import gleam/set
1212
import gleam/string
1313
import gleam/string_builder

0 commit comments

Comments
 (0)