aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-09-17 13:56:12 +0200
committerLoïc Hoguin <[email protected]>2018-09-17 13:56:12 +0200
commit9b8ed47d789412b0021bfc1f94f1c17c387c721c (patch)
tree598d7df20655620dfe9bb1fd532daed5f50f812d
parentfedc4af6432369850cb5e4b7aabfe0512ddfc5a5 (diff)
downloadranch-9b8ed47d789412b0021bfc1f94f1c17c387c721c.tar.gz
ranch-9b8ed47d789412b0021bfc1f94f1c17c387c721c.tar.bz2
ranch-9b8ed47d789412b0021bfc1f94f1c17c387c721c.zip
Ranch 1.6.21.6.2
-rw-r--r--Makefile2
-rw-r--r--doc/src/guide/migrating_from_1.6.asciidoc5
-rw-r--r--ebin/ranch.app2
3 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a803c33..6b9e030 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
PROJECT = ranch
PROJECT_DESCRIPTION = Socket acceptor pool for TCP protocols.
-PROJECT_VERSION = 1.6.1
+PROJECT_VERSION = 1.6.2
PROJECT_REGISTERED = ranch_server
# Options.
diff --git a/doc/src/guide/migrating_from_1.6.asciidoc b/doc/src/guide/migrating_from_1.6.asciidoc
index 3193f63..6e94fad 100644
--- a/doc/src/guide/migrating_from_1.6.asciidoc
+++ b/doc/src/guide/migrating_from_1.6.asciidoc
@@ -3,6 +3,11 @@
The following patch versions were released since Ranch 1.6:
+=== Ranch 1.6.2
+
+This release fixes an issue where listener information would
+not get cleaned up when an embedded listener was stopped.
+
=== Ranch 1.6.1
This release fixes a minor issue in the README and adds an
diff --git a/ebin/ranch.app b/ebin/ranch.app
index ed362cd..aab5626 100644
--- a/ebin/ranch.app
+++ b/ebin/ranch.app
@@ -1,6 +1,6 @@
{application, 'ranch', [
{description, "Socket acceptor pool for TCP protocols."},
- {vsn, "1.6.1"},
+ {vsn, "1.6.2"},
{modules, ['ranch','ranch_acceptor','ranch_acceptors_sup','ranch_app','ranch_conns_sup','ranch_listener_sup','ranch_protocol','ranch_server','ranch_ssl','ranch_sup','ranch_tcp','ranch_transport']},
{registered, [ranch_sup,ranch_server]},
{applications, [kernel,stdlib,ssl]},