From e8b0e04d4980c7d355238e3bffb425805870e77c Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 3 Oct 2022 20:37:46 +0200 Subject: chore: release test suite fixes as 1.0.0.2 --- CHANGELOG.md | 9 +++++++++ spacecookie.cabal | 4 ++-- spacecookie.nix | 5 +++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 132932a..cbcfd77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Revision history for spacecookie +## 1.0.0.2 + +2022-10-03 + +* Work around [cabal#8458](https://github.com/haskell/cabal/issues/8458), + ensuring that the test suite can be compiled with `cabal-install` 3.8.1.0. +* Always compile test suite with `-threaded` to avoid random + `CurlBadFunctionArg` exceptions when executing integration tests. + ## 1.0.0.1 2021-11-29 diff --git a/spacecookie.cabal b/spacecookie.cabal index 1461a2e..6f94aed 100644 --- a/spacecookie.cabal +++ b/spacecookie.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: spacecookie -version: 1.0.0.1 +version: 1.0.0.2 synopsis: Gopher server library and daemon description: Simple gopher library that allows writing custom gopher applications. Also includes a fully-featured gopher server @@ -8,7 +8,7 @@ description: Simple gopher library that allows writing custom gopher license: GPL-3.0-only license-file: LICENSE author: Lukas Epple -maintainer: sterni-spacecookie@systemli.org +maintainer: sternenseemann@systemli.org category: Network build-type: Simple homepage: https://github.com/sternenseemann/spacecookie diff --git a/spacecookie.nix b/spacecookie.nix index afcf43c..6d635f1 100644 --- a/spacecookie.nix +++ b/spacecookie.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "spacecookie"; - version = "1.0.0.0"; + version = "1.0.0.2"; src = ./.; isLibrary = true; isExecutable = true; @@ -25,5 +25,6 @@ mkDerivation { ]; homepage = "https://github.com/sternenseemann/spacecookie"; description = "Gopher server library and daemon"; - license = lib.licenses.gpl3; + license = lib.licenses.gpl3Only; + mainProgram = "spacecookie"; } -- cgit 1.4.1