postgresql-simple-migration 0.1.11.0 → 0.1.12.0
raw patch · 3 files changed
+10/−2 lines, 3 filesdep ~basedep ~hspecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, hspec
API changes (from Hackage documentation)
Files
- Changelog.markdown +3/−0
- postgresql-simple-migration.cabal +2/−2
- src/Database/PostgreSQL/Simple/Migration.hs +5/−0
Changelog.markdown view
@@ -1,5 +1,8 @@ # Changelog +## 0.1.12.0+* Support for GHC 8.4+ ## 0.1.11.0 * Improved documentation * Fixed exists_table
postgresql-simple-migration.cabal view
@@ -1,5 +1,5 @@ name: postgresql-simple-migration-version: 0.1.11.0+version: 0.1.12.0 synopsis: PostgreSQL Schema Migrations homepage: https://github.com/ameingast/postgresql-simple-migration Bug-reports: https://github.com/ameingast/postgresql-simple-migration/issues@@ -70,5 +70,5 @@ build-depends: base >= 4.6 && < 5.0, bytestring >= 0.10 && < 0.11, postgresql-simple >= 0.4 && < 0.6,- hspec >= 2.2 && < 2.5,+ hspec >= 2.2 && < 2.6, postgresql-simple-migration
src/Database/PostgreSQL/Simple/Migration.hs view
@@ -255,6 +255,11 @@ -- ^ Performs a series of 'MigrationCommand's in sequence. deriving (Show, Eq, Read, Ord) +#if __GLASGOW_HASKELL__ >= 804+instance Semigroup MigrationCommand where+ (<>) = mappend+#endif+ instance Monoid MigrationCommand where mempty = MigrationCommands [] mappend (MigrationCommands xs) (MigrationCommands ys) = MigrationCommands (xs ++ ys)