Skip to content

Commit 6515498

Browse files
committed
bump minor, implemented Collectable
1 parent c3ad2cb commit 6515498

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ A `:queue` wrapper with improvements in API and addition of Protocol implementat
44

55
## Protocols
66

7-
`Inspect` and `Enumerable` are implemented, use queues with `Enum`!
7+
`Inspect`, `Collectable` and `Enumerable` are implemented,
8+
use Qex with `IO.inspect` and `Enum` functions!
89

910
## Installation
1011

@@ -14,7 +15,7 @@ The package can be installed as:
1415

1516
```elixir
1617
def deps do
17-
[{:qex, "~> 0.2"}]
18+
[{:qex, "~> 0.3"}]
1819
end
1920
```
2021

lib/qex.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Qex do
55
66
## Protocols
77
8-
`Inspect` and `Enumerable` are implemented
8+
`Inspect`, `Collectable` and `Enumerable` are implemented
99
"""
1010

1111
@opaque t :: %__MODULE__{}

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Qex.Mixfile do
33

44
def project do
55
[app: :qex,
6-
version: "0.2.1",
6+
version: "0.3.0",
77
elixir: "~> 1.3",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,

0 commit comments

Comments
 (0)