Skip to content

Commit

Permalink
release 3.1.3 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
yolo-vikram authored Jan 3, 2025
1 parent 11900b0 commit e127da7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [3.1.3] (2025-01-03)

### Enhancements
- Add asynchronous message publishing.

## [3.1.2] (2024-08-16)

### Bug fixes
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Consumer server for RabbitMQ with message publishing functionality.
- [Reply description](#Reply-description)
- [The default exchange](#The-default-exchange)
- [Publish message](#Publish-message)
- [Publish message asynchronously](#Publish-message-asynchronously)
- [Checking connections](#Checking-connections)
- [Contributing](#Contributing)
- [License](#License)
Expand Down Expand Up @@ -267,6 +268,16 @@ Coney.publish("exchange", "message")
Coney.publish("exchange", "routing_key", "message")
```

## Publish message asynchronously

```elixir
Coney.publish_async("exchange", "message")

# or

Coney.publish_async("exchange", "routing_key", "message")
```

## Checking connections

You can use`Coney.status/0` if you need to get information about RabbitMQ connections:
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Coney.Mixfile do
def project do
[
app: :coney,
version: "3.1.2",
version: "3.1.3",
elixir: ">= 1.12.0",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit e127da7

Please sign in to comment.