Browse Source

Ranch 2.0.0

Loïc Hoguin 5 years ago
parent
commit
e8cff09904
3 changed files with 3 additions and 6 deletions
  1. 1 1
      Makefile
  2. 1 1
      ebin/ranch.app
  3. 1 4
      src/ranch.appup

+ 1 - 1
Makefile

@@ -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.

+ 1 - 1
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]},

+ 1 - 4
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},