Description
Describe the bug
Unless I'm misunderstanding how the Erlang AMQP 1.0 client is published, it looks like the version of :amqp10_client
that the documentation on hexdocs.pm currently describes is old: https://hexdocs.pm/amqp10_client/
Reproduction steps
View the :amqp10_client
docs on hexdocs.pm. Notice that the documented functions are different from the actual source code.
Expected behavior
The docs should be up-to-date or allow version selection similar to other hexdocs.pm packages.
For example, the docs should show a detach_link/1
function but not detach/2
.
Additional context
Example code:
rabbitmq-server/deps/amqp10_client/src/amqp10_client.erl
Lines 301 to 307 in 9ef0483
Example docs:
I'm guessing the docs are coming from here: https://github.com/rabbitmq/rabbitmq-amqp1.0-client/blob/master/src/amqp10_client_session.erl#L178-L180