Skip to content

Commit 194d7fe

Browse files
committed
v0.1.0
1 parent 2cce83e commit 194d7fe

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## v0.1.0 - 2020-08-22
4+
5+
- Initial release.

rebar.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
{deps, [
1111
{gleam_stdlib, "~> 0.10.1"},
1212
{gleam_http, "~> 1.3.0"},
13-
{gleam_otp, {git, "https://github.com/gleam-lang/otp", {branch, "main"}}},
13+
{gleam_otp, "~> 0.0"},
1414
{cowboy, "~> 2.8"}
1515
]}.

rebar.lock

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22
[{<<"cowboy">>,{pkg,<<"cowboy">>,<<"2.8.0">>},0},
33
{<<"cowlib">>,{pkg,<<"cowlib">>,<<"2.9.1">>},1},
44
{<<"gleam_http">>,{pkg,<<"gleam_http">>,<<"1.3.0">>},0},
5-
{<<"gleam_otp">>,
6-
{git,"https://github.com/gleam-lang/otp",
7-
{ref,"aaf4ee6cda39ca32f952e1e794687cb00ad43934"}},
8-
0},
5+
{<<"gleam_otp">>,{pkg,<<"gleam_otp">>,<<"0.0.1">>},0},
96
{<<"gleam_stdlib">>,{pkg,<<"gleam_stdlib">>,<<"0.10.1">>},0},
107
{<<"ranch">>,{pkg,<<"ranch">>,<<"1.7.1">>},1}]}.
118
[
129
{pkg_hash,[
1310
{<<"cowboy">>, <<"F3DC62E35797ECD9AC1B50DB74611193C29815401E53BAC9A5C0577BD7BC667D">>},
1411
{<<"cowlib">>, <<"61A6C7C50CF07FDD24B2F45B89500BB93B6686579B069A89F88CB211E1125C78">>},
1512
{<<"gleam_http">>, <<"DC84D787CB49550D7E98834A966A4F07EE90FE863A6088E752E8F1A208AB41C1">>},
13+
{<<"gleam_otp">>, <<"2E43C9F807DDD281D1142F5D1428627F1D99A1E53C4C95D6CCB5B4A6C7799ABA">>},
1614
{<<"gleam_stdlib">>, <<"F123F33E03B5CDF5E19FC179B9EE81269DEB93F7DEFADB17EF2930E4DB9011E7">>},
1715
{<<"ranch">>, <<"6B1FAB51B49196860B733A49C07604465A47BDB78AA10C1C16A3D199F7F8C881">>}]}
1816
].

src/gleam/http/cowboy.gleam

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import gleam/atom.{Atom}
21
import gleam/map.{Map}
32
import gleam/option.{None, Option, Some}
43
import gleam/result
@@ -79,8 +78,8 @@ fn service_to_handler(
7978
) -> fn(CowboyRequest) -> CowboyRequest {
8079
fn(request) {
8180
let tuple(body, request) = get_body(request)
82-
let response = service(
83-
http.Request(
81+
let response =
82+
service(http.Request(
8483
body: body,
8584
headers: get_headers(request),
8685
host: get_host(request),
@@ -89,8 +88,7 @@ fn service_to_handler(
8988
port: Some(get_port(request)),
9089
query: get_query(request),
9190
scheme: get_scheme(request),
92-
),
93-
)
91+
))
9492
let status = response.status
9593
let headers = map.from_list(response.headers)
9694
let body = response.body

src/gleam_cowboy.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, gleam_cowboy,
22
[{description, "A Gleam program"},
3-
{vsn, "1.0.0"},
3+
{vsn, "0.1.0"},
44
{registered, []},
55
{applications,
66
[kernel,

0 commit comments

Comments
 (0)