Table of Contents generated with DocToc
Changelog
v1.3.0
Enhancements
-
Dependency updates
alembic
to3.2.0
calcinator
to2.2.0
amqp
to0.2.0
(Native support for Erlang 19! No more need for the git dependency for Erlang 19 support.)ex_doc
0.15.1
ex_machina
2.0.0
ja_serializer
0.12.0
junit_formatter
1.3.0
timex
3.1.13
uuid
1.1.7
poison
3.1.0
credo
0.7.3
- Add CircleCI badge
- Add HexFaktor badge
- Add InchEx
Bug Fixes
- #5 - Fix Elixir 1.4 warnings - @KronicDeth
v1.2.0
Enhancements
- #3 - Regression test for
use Retort.Resources
in dialyzer - @KronicDeth
Bug Fixes
-
- De-alias spec types in
Retort.Resources.__using__
because spec types had noalias
to setup correct alias names andalias
es should not be used inquote
block because they’ll leak into module whereuse
occurs. - Had to use
map
instead ofAlembic.Pagination.t
becauseAlembic.Pagination.t
is not a subtype ofmap
needed byCalcinator.Resources.list
callback.
- De-alias spec types in
- #4 -
|
has higher precedence than->
so the|
ends up being interpreted ast -> {:ok, data}
ORRetort.Client.Generic.error
instead of the correctt ->
EITHER{:ok, data}
ORRetort.Client.Generic.error
. - @KronicDeth
v1.1.0
Enhancements
-
- Ignore IntelliJ project files
- Update to
calcinator
2.1.0
- Update to
credo
0.6.0
- Update to
timex
3.1.8
- Update to
uuid
1.1.6
Bug Fixes
-
Fix
credo
0.6.0
errors- Add missing
@spec
s - Remove extra blank lines
- Add missing
- Fix Elixir 1.4 warnings about missing
()
on 0-arity function calls. - Use correct
rabbit_common
inmix.lock
for Erlang 19+.