From 5699bd421eddc40e52566b089e33fd60b1be63fe Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Wed, 17 Jan 2024 09:11:35 -0500 Subject: [PATCH] Add missing test suite data to extra-source-files --- CHANGELOG.md | 5 +++++ http-interchange.cabal | 15 +++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81bae86..0c25389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Revision history for http-interchange +## 0.3.?.? -- 2024-??-?? + +* List test suite file dependencies in `extra-source-files` so that Hackage + is able to run the test suite. + ## 0.3.2.0 -- 2024-01-16 * Add `Eq` and `Show` to all data types. diff --git a/http-interchange.cabal b/http-interchange.cabal index c29cb09..8e84640 100644 --- a/http-interchange.cabal +++ b/http-interchange.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: http-interchange -version: 0.3.2.0 +version: 0.3.2.1 license: BSD-3-Clause license-file: LICENSE author: Andrew Martin @@ -14,7 +14,18 @@ description: copyright: 2023 Andrew Martin category: Data build-type: Simple -extra-doc-files: CHANGELOG.md +extra-doc-files: + CHANGELOG.md + README.md +extra-source-files: + golden/request/*.json + golden/request/*.txt + golden/request/*.input + golden/request/*.output + golden/response/*.json + golden/response/*.txt + golden/response/*.input + golden/response/*.output library ghc-options: -Wall -O2