diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | ebin/ranch.app | 2 | ||||
-rw-r--r-- | src/ranch.appup | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -2,7 +2,7 @@ PROJECT = ranch PROJECT_DESCRIPTION = Socket acceptor pool for TCP protocols. -PROJECT_VERSION = 2.0.0-rc.2 +PROJECT_VERSION = 2.0.0-rc.3 PROJECT_REGISTERED = ranch_server # Options. @@ -70,7 +70,7 @@ prepare_tag: $(verbose) echo -n "APP: " $(verbose) grep -m1 vsn ebin/$(PROJECT).app | sed 's/ //g' $(verbose) echo -n "APPUP: " - $(verbose) grep -m1 {\" ebin/$(PROJECT).appup + $(verbose) grep -m1 {\" src/$(PROJECT).appup $(verbose) echo $(verbose) echo "Links in the README:" $(verbose) grep http.*:// README.asciidoc diff --git a/ebin/ranch.app b/ebin/ranch.app index 0e5db7f..d2cf7c4 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.2"}, + {vsn, "2.0.0-rc.3"}, {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 dcb47f0..2c59736 100644 --- a/src/ranch.appup +++ b/src/ranch.appup @@ -1,7 +1,7 @@ %% @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-rc.3", [{<<"2\\.0\\.[0-9]+.*">>, [ {apply, {ranch, stop_all_acceptors, []}}, {load_module, ranch}, |