aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-08-07 17:19:32 +0200
committerLoïc Hoguin <[email protected]>2015-08-07 17:42:48 +0200
commitb8e4115eb13488c517d8d8ef33c47d0eaa7838c6 (patch)
treea38f044aa69497149b7dedca4fe31bfa3239e5a2
parent8c60dd6c1b56aeef4493142adcbd8fb0ab6917ef (diff)
downloadcowboy-b8e4115eb13488c517d8d8ef33c47d0eaa7838c6.tar.gz
cowboy-b8e4115eb13488c517d8d8ef33c47d0eaa7838c6.tar.bz2
cowboy-b8e4115eb13488c517d8d8ef33c47d0eaa7838c6.zip
Update Cowboy to 1.0.31.0.3
-rw-r--r--AUTHORS7
-rw-r--r--CHANGELOG.md24
-rw-r--r--src/cowboy.app.src2
3 files changed, 32 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index dda3a2d..1cc04b4 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -17,9 +17,11 @@ Eduardo Gurgel
Egobrain
Josh Toft
Steven Gravell
+Alex Kovalev
Andrew Thompson
Hunter Morris
Ivan Lisenkov
+Martin Rehfeld
Matthias Endler
Seletskiy Stanislav
Sina Samavati
@@ -28,7 +30,9 @@ Tristan Sloughter
0xAX
Adam Cammmack
Adrian Roe
+Alexander Færøy
Alexei Sholik
+Alexey Lebedeff
Andre Graf
Andrzej Sliwa
Blake Gentry
@@ -36,9 +40,11 @@ Bob Ippolito
Boris Faure
Cameron Bytheway
Cristian Hancila
+Daniel White
Danielle Sucher
Dave Peticolas
David Kelly
+David N. Welton
DeadZen
Dmitry Groshev
Drew
@@ -79,6 +85,7 @@ Unix1
alisdair sullivan
dbmercer
derdesign
+mocchira
pmyarchon
rambocoder
serge
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d0f6ec..edeb748 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,30 @@
CHANGELOG
=========
+1.0.3
+-----
+
+ * Add CircleCI for automated testing across all supported Erlang versions
+
+ * Only send the Connection header when necessary
+
+ * Send Connection: keep-alive when HTTP/1.0 connections are kept open
+
+ * Fix a typo in a return value of cowboy_http:asctime_date
+
+ * Fix Dialyzer warnings in cowboy_clock
+
+1.0.2
+-----
+
+ * Fix cowboy_clock inbox overflow when system clock changes (but see 1.0.3)
+
+ * Fix stacktrace shown on REST handler crashes
+
+ * Reply with 400 on if-match and if-not-match parsing crash
+
+ * Improve static_world example by adding index.html file
+
1.0.1
-----
diff --git a/src/cowboy.app.src b/src/cowboy.app.src
index faea763..2b8add0 100644
--- a/src/cowboy.app.src
+++ b/src/cowboy.app.src
@@ -14,7 +14,7 @@
{application, cowboy, [
{description, "Small, fast, modular HTTP server."},
- {vsn, "1.0.2"},
+ {vsn, "1.0.3"},
{id, "git"},
{modules, []},
{registered, [cowboy_clock, cowboy_sup]},