Skip to content

Commit

Permalink
chore: release test suite fixes as 1.0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sternenseemann committed Oct 3, 2022
1 parent 728472a commit e8b0e04
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions spacecookie.cabal
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
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
daemon complete with gophermap-support built on top of it.
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
Expand Down
5 changes: 3 additions & 2 deletions spacecookie.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "spacecookie";
version = "1.0.0.0";
version = "1.0.0.2";
src = ./.;
isLibrary = true;
isExecutable = true;
Expand All @@ -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";
}

0 comments on commit e8b0e04

Please sign in to comment.