From 6d6b6ec9bdb909e2ad320cb8e11aeb5175acb618 Mon Sep 17 00:00:00 2001 From: Jesse Gumm Date: Thu, 1 Jul 2021 08:43:18 -0500 Subject: [PATCH] Update changelog and makefile --- CHANGELOG.markdown | 5 ++++- Makefile | 8 +++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 7b51aba..18f9a5f 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,7 +1,10 @@ ## 0.7.0 -* Some Dialyzer updates +* Re-introduce the qdate server for storing qdate timezones, formats, and parsers, + rather than overloading the `application` env vars (since the `application` + module only wants keys to be atoms). * Convert to using `qdate_localtime` 1.2.0 (which passes dialyzer checks) +* `qdate` is passing dialyzer again ## 0.6.0 diff --git a/Makefile b/Makefile index 39a42da..08d6350 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,6 @@ endif all: compile -dialyzer: - $(REBAR) dialyzer - compile: $(REBAR) compile @@ -21,6 +18,11 @@ update: test: compile $(REBAR) eunit +dialyzer: compile + $(REBAR) dialyzer + +travis: test dialyzer + run: $(REBAR) shell