aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2025-02-14 11:42:44 +0100
committerLoïc Hoguin <[email protected]>2025-02-14 11:42:44 +0100
commit10b51304b26062e0dbfd5e74824324e9a911e269 (patch)
tree40bffdabca349c70d904290e996017bc29cf7193
parent734e66b41e74f119e869e5931b2d93b84f67d6a7 (diff)
downloadranch-1.8.x.tar.gz
ranch-1.8.x.tar.bz2
ranch-1.8.x.zip
Ranch 1.8.11.8.11.8.x
-rw-r--r--Makefile2
-rw-r--r--doc/src/guide/book.asciidoc2
-rw-r--r--doc/src/guide/migrating_from_1.8.asciidoc14
-rw-r--r--ebin/ranch.app2
4 files changed, 18 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dcbb443..d397efe 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
PROJECT = ranch
PROJECT_DESCRIPTION = Socket acceptor pool for TCP protocols.
-PROJECT_VERSION = 1.8.0
+PROJECT_VERSION = 1.8.1
PROJECT_REGISTERED = ranch_server
# Options.
diff --git a/doc/src/guide/book.asciidoc b/doc/src/guide/book.asciidoc
index e1b0af7..a7e6b48 100644
--- a/doc/src/guide/book.asciidoc
+++ b/doc/src/guide/book.asciidoc
@@ -29,6 +29,8 @@ include::internals.asciidoc[Internals]
include::upcoming_2.0_changes.asciidoc[Upcoming changes in Ranch 2.0]
+include::migrating_from_1.8.asciidoc[Changes since Ranch 1.8]
+
include::migrating_from_1.7.asciidoc[Migrating from Ranch 1.7 to 1.8]
include::migrating_from_1.6.asciidoc[Migrating from Ranch 1.6 to 1.7]
diff --git a/doc/src/guide/migrating_from_1.8.asciidoc b/doc/src/guide/migrating_from_1.8.asciidoc
new file mode 100644
index 0000000..1d35333
--- /dev/null
+++ b/doc/src/guide/migrating_from_1.8.asciidoc
@@ -0,0 +1,14 @@
+[appendix]
+== Changes since Ranch 1.8
+
+Ranch 1.8 is the last Ranch 1.x release series. Only compatibility
+fixes are to be released moving forward. Support for Ranch 1.8
+will be discontinued when Cowboy 3.0 is released.
+
+The following patch releases have been issued:
+
+=== Ranch 1.8.1
+
+* Fix `ranch:recv_proxy_header/2` for the upcoming Erlang/OTP 28.
+
+* Erlang.mk has been updated.
diff --git a/ebin/ranch.app b/ebin/ranch.app
index 4912ac4..5cae0c5 100644
--- a/ebin/ranch.app
+++ b/ebin/ranch.app
@@ -1,6 +1,6 @@
{application, 'ranch', [
{description, "Socket acceptor pool for TCP protocols."},
- {vsn, "1.8.0"},
+ {vsn, "1.8.1"},
{modules, ['ranch','ranch_acceptor','ranch_acceptors_sup','ranch_app','ranch_conns_sup','ranch_crc32c','ranch_listener_sup','ranch_protocol','ranch_proxy_header','ranch_server','ranch_ssl','ranch_sup','ranch_tcp','ranch_transport']},
{registered, [ranch_sup,ranch_server]},
{applications, [kernel,stdlib,ssl]},