From d949353581534ab786c906e293f2cbc07e4c6ee2 Mon Sep 17 00:00:00 2001 From: Boris Lykah Date: Sun, 1 Sep 2013 16:22:44 +0300 Subject: [PATCH] version 0.4.0 --- groundhog-mysql/HISTORY | 4 ++++ groundhog-mysql/groundhog-mysql.cabal | 4 ++-- groundhog-postgresql/HISTORY | 5 +++++ groundhog-postgresql/groundhog-postgresql.cabal | 4 ++-- groundhog-sqlite/HISTORY | 9 +++++++-- groundhog-sqlite/groundhog-sqlite.cabal | 4 ++-- groundhog-th/HISTORY | 5 +++++ groundhog-th/groundhog-th.cabal | 4 ++-- groundhog/HISTORY | 7 +++++++ groundhog/groundhog.cabal | 2 +- 10 files changed, 37 insertions(+), 11 deletions(-) diff --git a/groundhog-mysql/HISTORY b/groundhog-mysql/HISTORY index 9a37153..2476f5c 100644 --- a/groundhog-mysql/HISTORY +++ b/groundhog-mysql/HISTORY @@ -1,2 +1,6 @@ +0.4.0 +* query logging +* default column values + 0.3.0 The first release. diff --git a/groundhog-mysql/groundhog-mysql.cabal b/groundhog-mysql/groundhog-mysql.cabal index bb905c4..4318749 100644 --- a/groundhog-mysql/groundhog-mysql.cabal +++ b/groundhog-mysql/groundhog-mysql.cabal @@ -1,5 +1,5 @@ name: groundhog-mysql -version: 0.3.0.1 +version: 0.4.0 license: BSD3 license-file: LICENSE author: Boris Lykah @@ -17,7 +17,7 @@ library , mysql >= 0.1.1.3 && < 0.2 , bytestring >= 0.9 , transformers >= 0.2.1 - , groundhog >= 0.3.0 && < 0.4.0 + , groundhog >= 0.4.0 && < 0.5.0 , monad-control >= 0.3 , monad-logger >= 0.3 , containers >= 0.2 diff --git a/groundhog-postgresql/HISTORY b/groundhog-postgresql/HISTORY index 54abcdc..6166b83 100644 --- a/groundhog-postgresql/HISTORY +++ b/groundhog-postgresql/HISTORY @@ -1,3 +1,8 @@ +0.4.0 +* query logging +* default column values +* fixed postgresql-simple deprecation warnings + 0.3.0.2 * updated postgresql-simple dependency diff --git a/groundhog-postgresql/groundhog-postgresql.cabal b/groundhog-postgresql/groundhog-postgresql.cabal index 2e4f1ee..e1084fa 100644 --- a/groundhog-postgresql/groundhog-postgresql.cabal +++ b/groundhog-postgresql/groundhog-postgresql.cabal @@ -1,5 +1,5 @@ name: groundhog-postgresql -version: 0.3.1 +version: 0.4.0 license: BSD3 license-file: LICENSE author: Boris Lykah @@ -18,7 +18,7 @@ library , bytestring >= 0.9 , blaze-builder >= 0.3.0.0 , transformers >= 0.2.1 - , groundhog >= 0.3.0 && < 0.4.0 + , groundhog >= 0.4.0 && < 0.5.0 , monad-control >= 0.3 , monad-logger >= 0.3 , containers >= 0.2 diff --git a/groundhog-sqlite/HISTORY b/groundhog-sqlite/HISTORY index 8f6a06f..4702fd7 100644 --- a/groundhog-sqlite/HISTORY +++ b/groundhog-sqlite/HISTORY @@ -1,4 +1,9 @@ -0.3 +0.4.0 +* query logging +* default column values +* switched to direct-sqlite backend + +0.3.0 * switched from pool-conduit to resource-pool * schema qualified tables * support for savepoints @@ -21,4 +26,4 @@ The library supports new features of groundhog-0.1.0: composite keys, projection * migration analyzes schema instead of comparing CREATE statements as strings 0.0.1 -The first release. \ No newline at end of file +The first release. diff --git a/groundhog-sqlite/groundhog-sqlite.cabal b/groundhog-sqlite/groundhog-sqlite.cabal index 715eb45..ab7ef31 100644 --- a/groundhog-sqlite/groundhog-sqlite.cabal +++ b/groundhog-sqlite/groundhog-sqlite.cabal @@ -1,5 +1,5 @@ name: groundhog-sqlite -version: 0.3.0 +version: 0.4.0 license: BSD3 license-file: LICENSE author: Boris Lykah @@ -15,7 +15,7 @@ library build-depends: base >= 4 && < 5 , bytestring >= 0.9 , transformers >= 0.2.1 - , groundhog >= 0.3.0 && < 0.4.0 + , groundhog >= 0.4.0 && < 0.5.0 , monad-control >= 0.3 , monad-logger >= 0.3 , containers >= 0.2 diff --git a/groundhog-th/HISTORY b/groundhog-th/HISTORY index f3d2a56..34dbc15 100644 --- a/groundhog-th/HISTORY +++ b/groundhog-th/HISTORY @@ -1,3 +1,8 @@ +0.4.0 +* references to tables not mapped by groundhog +* default column values +* check for already existing unique key phantom datatypes + 0.3.1 * generation of SinglePersistField and PurePersistField instances for keys diff --git a/groundhog-th/groundhog-th.cabal b/groundhog-th/groundhog-th.cabal index 6441fc2..1050ee8 100644 --- a/groundhog-th/groundhog-th.cabal +++ b/groundhog-th/groundhog-th.cabal @@ -1,5 +1,5 @@ name: groundhog-th -version: 0.3.1 +version: 0.4.0 license: BSD3 license-file: LICENSE author: Boris Lykah @@ -14,7 +14,7 @@ build-type: Simple library build-depends: base >= 4 && < 5 , bytestring >= 0.9 - , groundhog >= 0.3.1 && < 0.4.0 + , groundhog >= 0.4.0 && < 0.5.0 , template-haskell , time >= 1.1.4 , containers >= 0.2 diff --git a/groundhog/HISTORY b/groundhog/HISTORY index c19d252..15e0340 100644 --- a/groundhog/HISTORY +++ b/groundhog/HISTORY @@ -1,3 +1,10 @@ +0.4.0 +* references to tables not mapped by groundhog +* default column values +* better type inference for expressions +* constructor for empty condition CondEmpty +* logging queries based on monad-logger + 0.3.1 * removed superclass constraints SinglePersistField and PurePersistField for PrimitivePersistField * fixed prefixing columns of nested embedded datatypes when not all names are specified diff --git a/groundhog/groundhog.cabal b/groundhog/groundhog.cabal index 7907efc..1d8bc45 100644 --- a/groundhog/groundhog.cabal +++ b/groundhog/groundhog.cabal @@ -1,5 +1,5 @@ name: groundhog -version: 0.3.1.1 +version: 0.4.0 license: BSD3 license-file: LICENSE author: Boris Lykah