Skip to content

Commit e5cb94b

Browse files
committed
Fix maintainer in module comments
1 parent 3dc9dc9 commit e5cb94b

File tree

11 files changed

+22
-10
lines changed

11 files changed

+22
-10
lines changed

app/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

mkDocs.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
set -e
3+
4+
dir=$(mktemp -d dist-newstyle/dist-docs.XXXXXX)
5+
trap 'rm -r "$dir"' EXIT
6+
7+
cabal new-haddock --builddir="$dir" --haddock-option=--hyperlinked-source --haddock-for-hackage
8+
9+
# Starting with cabal 2.0, `--publish` is needed for uploading to non-candidate releases
10+
cabal upload -d $dir/*-docs.tar.gz $1
11+
12+

postgresql-migration.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: postgresql-migration
3-
version: 0.2.1.0
3+
version: 0.2.1.1
44
synopsis: PostgreSQL Schema Migrations
55
homepage: https://github.com/andrevdm/postgresql-migration
66
Bug-reports: https://github.com/andrevdm/postgresql-migration/issues

src/Database/PostgreSQL/Simple/Migration.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

src/Database/PostgreSQL/Simple/Migration/V1Compat.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

src/Database/PostgreSQL/Simple/Util.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

test/Database/PostgreSQL/Simple/MigrationTest.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

test/Database/PostgreSQL/Simple/MigrationTestV1Compat.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

test/Database/PostgreSQL/Simple/TransactionPerRunTest.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

test/Database/PostgreSQL/Simple/TransactionPerStepTest.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

test/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-- Copyright : (c) 2014 Andreas Meingast <[email protected]>
44
--
55
-- License : BSD-style
6-
-- Maintainer : ameingast@gmail.com
6+
-- Maintainer : andre@andrevdm.com
77
-- Stability : experimental
88
-- Portability : GHC
99
--

0 commit comments

Comments
 (0)