Skip to content

Commit d90bf3e

Browse files
committed
fixed missing files
1 parent 6d81332 commit d90bf3e

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [HEAD]
4+
5+
## [0.4.1]
6+
### Changed
7+
- Fixed missing files.
48

59
## [0.4.0]
610
### Added
@@ -32,7 +36,8 @@
3236
### Added
3337
- Initial version of the package.
3438

35-
[Unreleased]: ../../compare/v0.4.0...HEAD
39+
[HEAD]: ../../compare/v0.4.1...HEAD
40+
[0.4.1]: ../../compare/v0.4.0...v0.4.1
3641
[0.4.0]: ../../compare/v0.3.0...v0.4.0
3742
[0.3.0]: ../../compare/v0.2.1...v0.3.0
3843
[0.2.1]: ../../compare/v0.2.0...v0.2.1

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}:
55
mkDerivation {
66
pname = "postgresql-simple-bind";
7-
version = "0.4.0";
7+
version = "0.4.1";
88
src = ./.;
99
libraryHaskellDepends = [
1010
attoparsec base bytestring data-default exceptions heredoc

postgresql-simple-bind.cabal

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: postgresql-simple-bind
2-
version: 0.4.0
2+
version: 0.4.1
33
synopsis: FFI-like bindings for PostgreSQL stored functions
44
description: For tutorial see here: https:\/\/github.com\/zohl\/postgresql-simple-bind\/blob\/master\/README.md
55
license: BSD3
@@ -13,6 +13,7 @@ cabal-version: >=1.10
1313

1414
extra-source-files:
1515
CHANGELOG.md
16+
examples/sql/*.sql
1617

1718
flag dev
1819
description: Turn on development settings.
@@ -86,6 +87,12 @@ test-suite examples
8687

8788
hs-source-dirs: examples
8889
main-is: Main.hs
90+
other-modules:
91+
Common
92+
ExMessages
93+
ExNumDumpster
94+
ExUsers
95+
8996
default-language: Haskell2010
9097

9198
ghc-options: -Wall -Wno-redundant-constraints

0 commit comments

Comments
 (0)