Current section

16 Versions

Jump to

Compare versions

4 files changed
+9 additions
-5 deletions
  @@ -2,7 +2,7 @@
2 2
3 3 All notable changes to this project will be documented in this file.
4 4
5 - ## [0.1.4] - 2026-01-15
5 + ## [0.1.5] - 2026-01-15
6 6
7 7 ### Added
  @@ -2,7 +2,7 @@
2 2 [{<<"Changelog">>,<<"https://hexdocs.pm/mqttx/changelog.html">>},
3 3 {<<"GitHub">>,<<"https://github.com/cignosystems/mqttx">>}]}.
4 4 {<<"name">>,<<"mqttx">>}.
5 - {<<"version">>,<<"0.1.4">>}.
5 + {<<"version">>,<<"0.1.5">>}.
6 6 {<<"description">>,
7 7 <<"Pure Elixir MQTT 3.1.1/5.0 library - codec, server, and client">>}.
8 8 {<<"elixir">>,<<"~> 1.15">>}.
  @@ -7,6 +7,8 @@ defmodule MqttX do
7 7 - Transport-agnostic server/broker
8 8 - Modern client with automatic reconnection
9 9
10 + For full documentation, installation guide, and examples, see the [README](readme.html).
11 +
10 12 ## Quick Start
11 13
12 14 ### Server
  @@ -83,5 +85,5 @@ defmodule MqttX do
83 85 Returns the library version.
84 86 """
85 87 @spec version :: String.t()
86 - def version, do: "0.1.4"
88 + def version, do: "0.1.5"
87 89 end
  @@ -1,7 +1,7 @@
1 1 defmodule MqttX.MixProject do
2 2 use Mix.Project
3 3
4 - @version "0.1.4"
4 + @version "0.1.5"
5 5 @source_url "https://github.com/cignosystems/mqttx"
6 6
7 7 def project do
  @@ -55,8 +55,10 @@ defmodule MqttX.MixProject do
55 55 defp docs do
56 56 [
57 57 main: "readme",
58 - source_url: @source_url,
58 + name: "MqttX",
59 59 source_ref: "v#{@version}",
60 + canonical: "https://hexdocs.pm/mqttx",
61 + source_url: @source_url,
60 62 extras: ["README.md", "CHANGELOG.md"]
61 63 ]
62 64 end