aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-02-06 12:28:10 +0100
committerLoïc Hoguin <[email protected]>2020-02-10 13:58:38 +0100
commit864f84253886fb62072e0da64565f99b32a49bce (patch)
tree4b99efb9d346eb65d43779db2479e66ba1b59b44 /src
parent62c692fad7ff448ccca3505e1dd40be245cbed53 (diff)
downloadranch-864f84253886fb62072e0da64565f99b32a49bce.tar.gz
ranch-864f84253886fb62072e0da64565f99b32a49bce.tar.bz2
ranch-864f84253886fb62072e0da64565f99b32a49bce.zip
Update Erlang.mk
Update the release upgrade test suite to use the appup from src/ rather than from ebin/.
Diffstat (limited to 'src')
-rw-r--r--src/ranch.appup43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/ranch.appup b/src/ranch.appup
new file mode 100644
index 0000000..6b25270
--- /dev/null
+++ b/src/ranch.appup
@@ -0,0 +1,43 @@
+%% @todo Remove the ending .* before release, we do not
+%% want to support upgrades from/to release candidates.
+
+{"2.0.0-rc.2",
+ [{<<"2\\.0\\.[0-9]+.*">>, [
+ {load_module, ranch},
+ {load_module, ranch_acceptor},
+ {load_module, ranch_acceptors_sup},
+ {load_module, ranch_app},
+ {load_module, ranch_conns_sup},
+ {load_module, ranch_conns_sup_sup},
+ {load_module, ranch_crc32c},
+ {load_module, ranch_embedded_sup},
+ {load_module, ranch_listener_sup},
+ {load_module, ranch_protocol},
+ {load_module, ranch_proxy_header},
+ {load_module, ranch_server},
+ {load_module, ranch_server_proxy},
+ {load_module, ranch_ssl},
+ {load_module, ranch_sup},
+ {load_module, ranch_tcp},
+ {load_module, ranch_transport}
+ ]}],
+ [{<<"2\\.0\\.[0-9]+.*">>, [
+ {load_module, ranch},
+ {load_module, ranch_acceptor},
+ {load_module, ranch_acceptors_sup},
+ {load_module, ranch_app},
+ {load_module, ranch_conns_sup},
+ {load_module, ranch_conns_sup_sup},
+ {load_module, ranch_crc32c},
+ {load_module, ranch_embedded_sup},
+ {load_module, ranch_listener_sup},
+ {load_module, ranch_protocol},
+ {load_module, ranch_proxy_header},
+ {load_module, ranch_server},
+ {load_module, ranch_server_proxy},
+ {load_module, ranch_ssl},
+ {load_module, ranch_sup},
+ {load_module, ranch_tcp},
+ {load_module, ranch_transport}
+ ]}]
+}.