Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							26bc5e6df3 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-06-28 22:38:12 -10:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							b681cde62d 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-06-03 14:08:47 -10:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							d3b20675d0 
							
						 
					 
					
						
						
							
							tools: really regenerate the cabal files with stack's hpack  
						
						... 
						
						
						
						hpack has dropped the hash at last, this should help a lot to reduce
edit conflicts and commit noise. 
						
					 
					
						2021-05-14 16:14:06 -10:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							41c8e1f6ef 
							
						 
					 
					
						
						
							
							;regen cabal files with latest stack's hpack (0.34.4)  
						
						
						
					 
					
						2021-05-14 08:17:56 -10:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							eb2da22f63 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-04-04 08:03:57 -10:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							d0940bf8ce 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-03-29 08:19:54 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							ae57e76cb3 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-03-12 06:59:30 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							5573538fdc 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-03-10 13:50:50 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							00beaf1423 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2021-03-10 08:24:59 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							f7bbb39a77 
							
						 
					 
					
						
						
							
							;regenerate cabal files with the hpack version in current stack  
						
						... 
						
						
						
						To minimise warnings. They got regenerated by a commit for #1471 . 
						
					 
					
						2021-02-18 13:42:40 -08:00 
						 
				 
			
				
					
						
							
							
								Arnout Engelen 
							
						 
					 
					
						
						
						
						
							
						
						
							ad2ab3c823 
							
						 
					 
					
						
						
							
							Make sure to round up for the 'to' date  
						
						
						
					 
					
						2021-02-17 09:05:13 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							9afccde16f 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-12-14 12:31:01 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							5507cb07ef 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-11-30 15:19:21 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							a97daaf322 
							
						 
					 
					
						
						
							
							lib: replace pretty-show with pretty-simple  
						
						... 
						
						
						
						pretty-simple, already used in .ghci, will hopefully give nicer debug
output, including for values which don't have Read-able Show output.
This should mean that we can start removing custom string-like Show
instances that were a workaround for pretty-show.
We are using the latest version (4.0.0.0) to get compact output.
Here's some old pretty-show output:
 CsvRules
   { rdirectives = [ ( "skip" , "1" ) ]
   , rcsvfieldindexes = [ ( "date" , 1 ) , ( "amount" , 2 ) ]
   , rassignments = [ ( "amount" , "%2" ) , ( "date" , "%1" ) ]
   , rconditionalblocks = []
   }
And the new pretty-simple output:
 CsvRules
   { rdirectives=
     [ ( "skip", "1" ) ]
   , rcsvfieldindexes=
     [ ( "date", 1 ), ( "amount", 2 ) ]
   , rassignments=
     [ ( "amount", "%2" ), ( "date", "%1" ) ]
   , rconditionalblocks= []
   }
Non-compact pretty-simple output would be:
 CsvRules
     { rdirectives=
         [
             ( "skip"
             , "1B"
             )
         ]
     , rcsvfieldindexes=
         [
             ( "date"
             , 1
             )
         ,
             ( "amount"
             , 2
             )
         ]
     , rassignments=
         [
             ( "amount"
             , "%2"
             )
         ,
             ( "date"
             , "%1"
             )
         ]
     , rconditionalblocks=[]
     }
Also:
- Account's Show instance no longer converts : to _ in account names
- drop unused pretty-show dependency from hledger, hledger-ui packages
- regenerate hledger-lib with the older hpack that's shipped in stack 
						
					 
					
						2020-11-10 08:06:11 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							90adb95983 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-09-07 12:17:35 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							e95a222ad2 
							
						 
					 
					
						
						
							
							;update some cabal files  
						
						
						
					 
					
						2020-09-01 20:39:02 -07:00 
						 
				 
			
				
					
						
							
							
								Stephen Morgan 
							
						 
					 
					
						
						
						
						
							
						
						
							f5a7c84065 
							
						 
					 
					
						
						
							
							ui: Bump version of vty, present in all supported stackage, to get rid of CPP.  
						
						
						
					 
					
						2020-08-29 15:08:28 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							f62797bdb7 
							
						 
					 
					
						
						
							
							;ui: cabal: simplify dep list to help packdeps reverse deps  
						
						... 
						
						
						
						(cf snoyberg/packdeps#51 ) 
						
					 
					
						2020-08-01 12:43:40 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							403cb457b7 
							
						 
					 
					
						
						
							
							;cabal files  
						
						
						
					 
					
						2020-07-14 12:09:45 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							24996caaeb 
							
						 
					 
					
						
						
							
							bump to dev version  
						
						
						
					 
					
						2020-06-21 10:35:52 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							729e87066f 
							
						 
					 
					
						
						
							
							;cabal files  
						
						
						
					 
					
						2020-06-07 13:00:40 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							a54376e204 
							
						 
					 
					
						
						
							
							;regen cabal files  
						
						
						
					 
					
						2020-06-06 17:20:13 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							6935c46b2c 
							
						 
					 
					
						
						
							
							;regen cabal files with latest stack/hpack (2.3.1/0.33.0)  
						
						
						
					 
					
						2020-05-02 17:31:35 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							d868a7e170 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-03-22 10:49:49 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							40d3a5c1f4 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-03-22 09:28:10 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							2b15418ddd 
							
						 
					 
					
						
						
							
							;update cabal files  
						
						
						
					 
					
						2020-03-22 09:08:37 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							1883ff4499 
							
						 
					 
					
						
						
							
							bump to dev version  
						
						
						
					 
					
						2020-03-07 15:06:18 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							6dfdc2bee8 
							
						 
					 
					
						
						
							
							;one more cabal file update. Not in hackage tarballs.  
						
						
						
					 
					
						2020-03-01 17:42:20 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							ba44d00bed 
							
						 
					 
					
						
						
							
							;bump version to 1.17  
						
						
						
					 
					
						2020-03-01 17:29:01 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							7011160bfd 
							
						 
					 
					
						
						
							
							;allow base 4.14/GHC 8.10  
						
						
						
					 
					
						2020-01-26 08:12:25 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							445e8aa3cc 
							
						 
					 
					
						
						
							
							add support for megaparsec 8 ( #1175 )  
						
						
						
					 
					
						2020-01-14 09:54:06 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							cfb2a61ae1 
							
						 
					 
					
						
						
							
							;bump to dev version; bump man page dates  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2020-01-05 09:04:50 -08:00 
						 
				 
			
				
					
						
							
							
								Stephen Morgan 
							
						 
					 
					
						
						
						
						
							
						
						
							74778efcf5 
							
						 
					 
					
						
						
							
							Use nubSort instead of nub . sort.  
						
						
						
					 
					
						2020-01-04 08:31:10 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							ac360893f5 
							
						 
					 
					
						
						
							
							ui: bump to 1.16.1 also, requiring hledger 1.16.1  
						
						
						
					 
					
						2019-12-03 08:41:44 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							6daebf60ea 
							
						 
					 
					
						
						
							
							;regen cabal files  
						
						
						
					 
					
						2019-12-01 10:05:37 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							ebedae01cf 
							
						 
					 
					
						
						
							
							;cabal: remove special cases for unsupported GHC 7  
						
						
						
					 
					
						2019-11-28 14:59:18 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							08951ac3e8 
							
						 
					 
					
						
						
							
							;cabal: add ghc 8.8 to tested-with  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2019-11-28 14:59:10 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							843d394077 
							
						 
					 
					
						
						
							
							cli, ui, web: support GHC 8.8, add stack-ghc8.8.yaml ( #1090 )  
						
						... 
						
						
						
						hledger-web needs an unreleased version of json. 
						
					 
					
						2019-11-28 14:31:48 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							24ce2686f4 
							
						 
					 
					
						
						
							
							drop GHC 7.10/base 4.8 support, finally, due to MonadFail hassles  
						
						... 
						
						
						
						in JournalReader.hs. If you still need this, feel free to work on
those errors. But hopefully not, because dropping base 4.8 should
permit some code cleanups. 
						
					 
					
						2019-09-14 03:45:37 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							f65fc47185 
							
						 
					 
					
						
						
							
							;bump version to 1.15.99  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2019-09-13 08:43:33 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							acd7010e5a 
							
						 
					 
					
						
						
							
							;doc: "curses-style interface" -> "terminal interface"  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2019-09-10 18:14:16 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							499e20c0b2 
							
						 
					 
					
						
						
							
							lib, cli, ui: start using Control.Monad.Fail, allow base-compat 0.11  
						
						... 
						
						
						
						fail is moving out of Monad and into it's own MonadFail class.
This will be enforced in GHC 8.8 (I think).
base-compat/base-compat-batteries 0.11.0 have adapted to this,
and are approaching stackage nightly
(https://github.com/commercialhaskell/stackage/issues/4802 ).
hledger is now ready to build with base-compat-batteries 0.11.0, once
all of our deps do (eg aeson). We are still compatible with the older
0.10.x and GHC 7.10.3 as well.
For now we are using both fails:
- new fail (from Control.Monad.Fail), used in our parsers, imported
  via base-compat-batteries Control.Monad.Fail.Compat to work with
  older GHC versions.
- old fail (from GHC.Base, exported by Prelude, Control.Monad,
  Control.Monad.State.Strict, Prelude.Compat, ...), used in easytest's
  Test, since I couldn't find their existing fail implementation to update.
To reduce (my) confusion, these are imported carefully, consistently,
and qualified everywhere as Fail.fail and Prelude.fail, with clashing
re-exports suppressed, like so:
import Prelude hiding (fail)
import qualified Prelude (fail)
import Control.Monad.State.Strict hiding (fail)
import "base-compat-batteries" Prelude.Compat hiding (fail)
import qualified "base-compat-batteries" Control.Monad.Fail.Compat as Fail 
						
					 
					
						2019-09-08 17:13:47 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							29f7654c3a 
							
						 
					 
					
						
						
							
							bump versions to 1.15  
						
						
						
					 
					
						2019-09-01 08:53:06 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							a6e9b11a54 
							
						 
					 
					
						
						
							
							;cabal: bump tested-with, regen cabal files  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2019-07-12 23:24:10 +01:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							a0462533d9 
							
						 
					 
					
						
						
							
							; ui: regen cabal file  
						
						
						
					 
					
						2019-03-20 17:41:50 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							c9e16b83ef 
							
						 
					 
					
						
						
							
							; propagate dev version bump  
						
						
						
					 
					
						2019-03-20 17:13:59 -07:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							928ddfeb13 
							
						 
					 
					
						
						
							
							bump hledger version to 1.14.1, and other pkgs' lower bounds  
						
						
						
					 
					
						2019-03-01 18:39:25 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							0cd5545e26 
							
						 
					 
					
						
						
							
							regen cabal files/manuals  
						
						... 
						
						
						
						[ci skip] 
						
					 
					
						2019-03-01 16:17:25 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							9fab3257e8 
							
						 
					 
					
						
						
							
							regen cabal files  
						
						
						
					 
					
						2019-03-01 15:44:40 -08:00 
						 
				 
			
				
					
						
							
							
								Simon Michael 
							
						 
					 
					
						
						
						
						
							
						
						
							94753f1cea 
							
						 
					 
					
						
						
							
							bump to dev version  
						
						
						
					 
					
						2019-02-08 11:33:44 -08:00