diff --git a/CHANGES.md b/CHANGES.md index f6f38f2..c8185db 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +0.1.4 +===== + +* Updated orgmode-parse which fixes parsing issue: https://github.com/ixmatus/orgmode-parse/issues/35 + 0.1.3 ===== diff --git a/orgstat.cabal b/orgstat.cabal index a3d3c70..29274f6 100644 --- a/orgstat.cabal +++ b/orgstat.cabal @@ -1,5 +1,5 @@ name: orgstat -version: 0.1.3 +version: 0.1.4 synopsis: Statistics visualizer for org-mode license: GPL-3 license-file: LICENSE @@ -48,7 +48,7 @@ library , log-warper >= 1.7.1 , mtl >= 2.2.1 , optparse-simple - , orgmode-parse >= 0.2.0 + , orgmode-parse >= 0.2.1 , text >= 1.2.2.1 , time >= 1.6.0.1 , turtle >= 1.2.8 diff --git a/src/cli/Main.hs b/src/cli/Main.hs index b3d1c0f..7a2285f 100644 --- a/src/cli/Main.hs +++ b/src/cli/Main.hs @@ -11,8 +11,8 @@ import Options.Applicative.Simple (Parser, help, long, metavar, simpleOptions, s import Paths_orgstat (version) import System.Directory (getHomeDirectory) import System.FilePath (()) -import System.Wlog (Severity (..), logDebug, logError, logInfo, logWarning, productionB, - setupLogging, severityPlus, termSeveritiesOutB) +import System.Wlog (Severity (..), logDebug, logError, productionB, setupLogging, severityPlus, + termSeveritiesOutB) import OrgStat.CLI (CommonArgs, parseCommonArgs) import OrgStat.IO (readConfig) diff --git a/stack.yaml b/stack.yaml index 8bd99ca..e176454 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1,4 +1,4 @@ -resolver: nightly-2017-11-30 +resolver: lts-10.7 nix: shell-file: shell.nix @@ -7,4 +7,4 @@ extra-deps: - log-warper-1.7.1 - fmt-0.5.0.0 - universum-0.8.0 -- orgmode-parse-0.2.0 +- orgmode-parse-0.2.1