From d90bf3eaec4dfc82e1f0ba093606a16b202d3798 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 9 May 2017 18:41:15 +0300 Subject: [PATCH] fixed missing files --- CHANGELOG.md | 9 +++++++-- default.nix | 2 +- postgresql-simple-bind.cabal | 9 ++++++++- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34d30db..0efec40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log -## [Unreleased] +## [HEAD] + +## [0.4.1] +### Changed +- Fixed missing files. ## [0.4.0] ### Added @@ -32,7 +36,8 @@ ### Added - Initial version of the package. -[Unreleased]: ../../compare/v0.4.0...HEAD +[HEAD]: ../../compare/v0.4.1...HEAD +[0.4.1]: ../../compare/v0.4.0...v0.4.1 [0.4.0]: ../../compare/v0.3.0...v0.4.0 [0.3.0]: ../../compare/v0.2.1...v0.3.0 [0.2.1]: ../../compare/v0.2.0...v0.2.1 diff --git a/default.nix b/default.nix index 40b7b22..94d70e7 100644 --- a/default.nix +++ b/default.nix @@ -4,7 +4,7 @@ }: mkDerivation { pname = "postgresql-simple-bind"; - version = "0.4.0"; + version = "0.4.1"; src = ./.; libraryHaskellDepends = [ attoparsec base bytestring data-default exceptions heredoc diff --git a/postgresql-simple-bind.cabal b/postgresql-simple-bind.cabal index 9aa671e..5daddf9 100644 --- a/postgresql-simple-bind.cabal +++ b/postgresql-simple-bind.cabal @@ -1,5 +1,5 @@ name: postgresql-simple-bind -version: 0.4.0 +version: 0.4.1 synopsis: FFI-like bindings for PostgreSQL stored functions description: For tutorial see here: https:\/\/github.com\/zohl\/postgresql-simple-bind\/blob\/master\/README.md license: BSD3 @@ -13,6 +13,7 @@ cabal-version: >=1.10 extra-source-files: CHANGELOG.md + examples/sql/*.sql flag dev description: Turn on development settings. @@ -86,6 +87,12 @@ test-suite examples hs-source-dirs: examples main-is: Main.hs + other-modules: + Common + ExMessages + ExNumDumpster + ExUsers + default-language: Haskell2010 ghc-options: -Wall -Wno-redundant-constraints