aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-03-25 12:21:47 +0100
committerLoïc Hoguin <[email protected]>2020-03-25 12:21:47 +0100
commitd1d02a0ebc1a5d9852b7fe5216ac4ce628fb1744 (patch)
treeb77e524581bf799f4642a1156a5709ced97c024c
parente433fafcd5e98ba06536dcc48c1049c72243b1cd (diff)
downloadgun-d1d02a0ebc1a5d9852b7fe5216ac4ce628fb1744.tar.gz
gun-d1d02a0ebc1a5d9852b7fe5216ac4ce628fb1744.tar.bz2
gun-d1d02a0ebc1a5d9852b7fe5216ac4ce628fb1744.zip
Gun 2.0.0-pre.22.0.0-pre.2
-rw-r--r--LICENSE2
-rw-r--r--Makefile4
-rw-r--r--ebin/gun.app2
-rw-r--r--rebar.config2
4 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index ca03f46..0b60cff 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2013-2019, Loïc Hoguin <[email protected]>
+Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/Makefile b/Makefile
index 5463091..105de1c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
PROJECT = gun
PROJECT_DESCRIPTION = HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP.
-PROJECT_VERSION = 2.0.0-pre.1
+PROJECT_VERSION = 2.0.0-pre.2
# Options.
@@ -14,7 +14,7 @@ CT_OPTS += -ct_hooks gun_ct_hook [] # -boot start_sasl
LOCAL_DEPS = ssl
DEPS = cowlib
-dep_cowlib = git https://github.com/ninenines/cowlib master
+dep_cowlib = git https://github.com/ninenines/cowlib 2.9.0
DOC_DEPS = asciideck
diff --git a/ebin/gun.app b/ebin/gun.app
index 8481a9f..affc6fd 100644
--- a/ebin/gun.app
+++ b/ebin/gun.app
@@ -1,6 +1,6 @@
{application, 'gun', [
{description, "HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP."},
- {vsn, "2.0.0-pre.1"},
+ {vsn, "2.0.0-pre.2"},
{modules, ['gun','gun_app','gun_content_handler','gun_cookies','gun_cookies_list','gun_data_h','gun_default_event_h','gun_event','gun_http','gun_http2','gun_public_suffix','gun_raw','gun_socks','gun_sse_h','gun_sup','gun_tcp','gun_tls','gun_tls_proxy','gun_tls_proxy_cb','gun_ws','gun_ws_h']},
{registered, [gun_sup]},
{applications, [kernel,stdlib,ssl,cowlib]},
diff --git a/rebar.config b/rebar.config
index 348f53e..68165f2 100644
--- a/rebar.config
+++ b/rebar.config
@@ -1,4 +1,4 @@
{deps, [
-{cowlib,".*",{git,"https://github.com/ninenines/cowlib","master"}}
+{cowlib,".*",{git,"https://github.com/ninenines/cowlib","2.9.0"}}
]}.
{erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard]}.