diff options
author | Loïc Hoguin <[email protected]> | 2020-06-25 11:38:43 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2020-06-25 11:38:43 +0200 |
commit | e8cff09904cee0bf8a77e79ad27f1bf98c6ca8b1 (patch) | |
tree | 8c8b0313fa7855b7c9e8f325076687e34a893bf1 | |
parent | 596ddfa2139dfe0f8b995940f607ae863c9bfdee (diff) | |
download | ranch-e8cff09904cee0bf8a77e79ad27f1bf98c6ca8b1.tar.gz ranch-e8cff09904cee0bf8a77e79ad27f1bf98c6ca8b1.tar.bz2 ranch-e8cff09904cee0bf8a77e79ad27f1bf98c6ca8b1.zip |
Ranch 2.0.0
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | ebin/ranch.app | 2 | ||||
-rw-r--r-- | src/ranch.appup | 5 |
3 files changed, 3 insertions, 6 deletions
@@ -2,7 +2,7 @@ PROJECT = ranch PROJECT_DESCRIPTION = Socket acceptor pool for TCP protocols. -PROJECT_VERSION = 2.0.0-rc.3 +PROJECT_VERSION = 2.0.0 PROJECT_REGISTERED = ranch_server # Options. diff --git a/ebin/ranch.app b/ebin/ranch.app index d2cf7c4..86ffd6b 100644 --- a/ebin/ranch.app +++ b/ebin/ranch.app @@ -1,6 +1,6 @@ {application, 'ranch', [ {description, "Socket acceptor pool for TCP protocols."}, - {vsn, "2.0.0-rc.3"}, + {vsn, "2.0.0"}, {modules, ['ranch','ranch_acceptor','ranch_acceptors_sup','ranch_app','ranch_conns_sup','ranch_conns_sup_sup','ranch_crc32c','ranch_embedded_sup','ranch_listener_sup','ranch_protocol','ranch_proxy_header','ranch_server','ranch_server_proxy','ranch_ssl','ranch_sup','ranch_tcp','ranch_transport']}, {registered, [ranch_sup,ranch_server]}, {applications, [kernel,stdlib,ssl]}, diff --git a/src/ranch.appup b/src/ranch.appup index 2a8f667..8630070 100644 --- a/src/ranch.appup +++ b/src/ranch.appup @@ -9,10 +9,7 @@ %% module then call system_code_change; and when downgrading, %% call system_code_change and then load the module. -%% @todo Remove the ending .* before release, we do not -%% want to support upgrades from/to release candidates. - -{"2.0.0-rc.3", +{"2.0.0", [{<<"2\\.0\\.[0-9]+.*">>, [ {apply, {ranch, stop_all_acceptors, []}}, {load_module, ranch}, |