diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,15 @@
 User-visible changes in the hledger command line tool and library.
 
 
+# 1.19.1 2020-09-07
+
+- Fix alignment of coloured numbers (#1345, #1349, Stephen Morgan)
+
+- Fix a regression in account type autodetection for accounts with
+  capitalised names. (#1341)
+
+- Allow megaparsec 9
+
 # 1.19 2020-09-01
 
 ## general
diff --git a/Hledger/Cli/Commands/Balance.hs b/Hledger/Cli/Commands/Balance.hs
--- a/Hledger/Cli/Commands/Balance.hs
+++ b/Hledger/Cli/Commands/Balance.hs
@@ -305,10 +305,9 @@
 -- | The balance command, prints a balance report.
 balance :: CliOpts -> Journal -> IO ()
 balance opts@CliOpts{rawopts_=rawopts,reportopts_=ropts@ReportOpts{..}} j = do
-  -- PARTIAL:
   d <- getCurrentDay
   case lineFormatFromOpts ropts of
-    Left err -> error' $ unlines [err]
+    Left err -> error' $ unlines [err]  -- PARTIAL:
     Right _ -> do
       let budget      = boolopt "budget" rawopts
           multiperiod = interval_ /= NoInterval
diff --git a/hledger.cabal b/hledger.cabal
--- a/hledger.cabal
+++ b/hledger.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 57200bf2d62853fd94cae6fdd76f98cd03cfba2b551e706fc6ac8e7650796c7f
+-- hash: 6318476983e12bab8c8835a0781d94162a98e306fa19d4a916a2c750d4e353c4
 
 name:           hledger
-version:        1.19
+version:        1.19.1
 synopsis:       Command-line interface for the hledger accounting system
 description:    The command-line interface for the hledger accounting system.
                 Its basic function is to read a plain text file describing
@@ -148,7 +148,7 @@
   other-modules:
       Paths_hledger
   ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
-  cpp-options: -DVERSION="1.19"
+  cpp-options: -DVERSION="1.19.1"
   build-depends:
       Decimal >=0.5.1
     , Diff
@@ -165,10 +165,10 @@
     , filepath
     , hashable >=1.2.4
     , haskeline >=0.6
-    , hledger-lib >=1.19 && <1.20
+    , hledger-lib >=1.19.1 && <1.20
     , lucid
     , math-functions >=0.3.3.0
-    , megaparsec >=7.0.0 && <8.1
+    , megaparsec >=7.0.0 && <9.1
     , mtl >=2.2.1
     , old-time
     , parsec >=3
@@ -201,7 +201,7 @@
   hs-source-dirs:
       app
   ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
-  cpp-options: -DVERSION="1.19"
+  cpp-options: -DVERSION="1.19.1"
   build-depends:
       Decimal >=0.5.1
     , aeson >=1
@@ -217,9 +217,9 @@
     , filepath
     , haskeline >=0.6
     , hledger
-    , hledger-lib >=1.19 && <1.20
+    , hledger-lib >=1.19.1 && <1.20
     , math-functions >=0.3.3.0
-    , megaparsec >=7.0.0 && <8.1
+    , megaparsec >=7.0.0 && <9.1
     , mtl >=2.2.1
     , old-time
     , parsec >=3
@@ -253,7 +253,7 @@
   hs-source-dirs:
       test
   ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
-  cpp-options: -DVERSION="1.19"
+  cpp-options: -DVERSION="1.19.1"
   build-depends:
       Decimal >=0.5.1
     , aeson >=1
@@ -269,9 +269,9 @@
     , filepath
     , haskeline >=0.6
     , hledger
-    , hledger-lib >=1.19 && <1.20
+    , hledger-lib >=1.19.1 && <1.20
     , math-functions >=0.3.3.0
-    , megaparsec >=7.0.0 && <8.1
+    , megaparsec >=7.0.0 && <9.1
     , mtl >=2.2.1
     , old-time
     , parsec >=3
@@ -319,10 +319,10 @@
     , filepath
     , haskeline >=0.6
     , hledger
-    , hledger-lib >=1.19 && <1.20
+    , hledger-lib >=1.19.1 && <1.20
     , html
     , math-functions >=0.3.3.0
-    , megaparsec >=7.0.0 && <8.1
+    , megaparsec >=7.0.0 && <9.1
     , mtl >=2.2.1
     , old-time
     , parsec >=3
