Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Mar 28, 2024
1 parent fbbb35c commit 899b48e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.14.0 - 2024-03-28

- The `mist` version constraint has been relaxed to permit 0.x or 1.x versions.

## v0.13.0 - 2024-03-23

- The `wisp` module gains the `file_download_from_memory` and `file_download`
Expand Down
6 changes: 3 additions & 3 deletions examples/utilities/tiny_database/src/tiny_database.gleam
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import gleam/result
import gleam/dict.{type Dict}
import gleam/dynamic
import ids/nanoid
import gleam/json
import gleam/list
import gleam/dict.{type Dict}
import gleam/result
import ids/nanoid
import simplifile

pub opaque type Connection {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gleam/map
import gleeunit
import gleeunit/should
import tiny_database
import gleam/map

pub fn main() {
gleeunit.main()
Expand Down
4 changes: 2 additions & 2 deletions gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "wisp"
version = "0.13.0"
version = "0.14.0"
gleam = ">= 0.32.0"
description = "A practical web framework for Gleam"
licences = ["Apache-2.0"]
Expand All @@ -16,7 +16,7 @@ gleam_erlang = "~> 0.21"
gleam_http = "~> 3.5"
gleam_json = "~> 0.6 or ~> 1.0"
gleam_stdlib = "~> 0.29 or ~> 1.0"
mist = "~> 0.13"
mist = "~> 0.13 or ~> 1.0"
simplifile = "~> 1.4"
marceau = "~> 1.1"
logging = "~> 1.0"
Expand Down
6 changes: 3 additions & 3 deletions src/wisp.gleam
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import exception
import gleam/bytes_builder.{type BytesBuilder}
import gleam/bit_array
import gleam/bool
import gleam/dict.{type Dict}
import gleam/bytes_builder.{type BytesBuilder}
import gleam/crypto
import gleam/dict.{type Dict}
import gleam/dynamic.{type Dynamic}
import gleam/erlang
import gleam/erlang/atom.{type Atom}
import gleam/http.{type Method}
import gleam/http/cookie
import gleam/http/request.{type Request as HttpRequest}
import gleam/http/response.{
type Response as HttpResponse, Response as HttpResponse,
}
import gleam/int
import gleam/erlang/atom.{type Atom}
import gleam/json
import gleam/list
import gleam/option.{type Option}
Expand Down
2 changes: 1 addition & 1 deletion test/wisp_test.gleam
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import gleam/bit_array
import gleam/crypto
import gleam/dict
import gleam/dynamic.{type Dynamic}
import gleam/erlang
import gleam/http
import gleam/http/request
import gleam/http/response.{Response}
import gleam/int
import gleam/list
import gleam/dict
import gleam/set
import gleam/string
import gleam/string_builder
Expand Down

0 comments on commit 899b48e

Please sign in to comment.