about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--spacecookie.cabal2
-rw-r--r--spacecookie.nix10
3 files changed, 9 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5469b75..4b4f257 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,8 @@
 # Revision history for spacecookie
 
-## 1.0.0.0 (UNRELEASED)
+## 1.0.0.0
+
+2021-03-16
 
 TL;DR:
 
diff --git a/spacecookie.cabal b/spacecookie.cabal
index 6d84ca9..3558636 100644
--- a/spacecookie.cabal
+++ b/spacecookie.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                spacecookie
-version:             0.2.1.2
+version:             1.0.0.0
 synopsis:            Gopher server library and daemon
 description:         Simple gopher library that allows writing custom gopher
                      applications. Also includes a fully-featured gopher server
diff --git a/spacecookie.nix b/spacecookie.nix
index e1cdfbf..afcf43c 100644
--- a/spacecookie.nix
+++ b/spacecookie.nix
@@ -6,24 +6,24 @@
 }:
 mkDerivation {
   pname = "spacecookie";
-  version = "0.2.1.2";
+  version = "1.0.0.0";
   src = ./.;
   isLibrary = true;
   isExecutable = true;
   libraryHaskellDepends = [
-    attoparsec base bytestring containers directory filepath-bytestring
-    hxt-unicode mtl socket text transformers unix
+    async attoparsec base bytestring containers directory
+    filepath-bytestring hxt-unicode mtl socket text transformers unix
   ];
   executableHaskellDepends = [
     aeson attoparsec base bytestring containers directory fast-logger
     filepath-bytestring mtl socket systemd text transformers unix
   ];
   testHaskellDepends = [
-    async attoparsec base bytestring containers directory download-curl
+    attoparsec base bytestring containers directory download-curl
     filepath-bytestring process tasty tasty-expected-failure
     tasty-hunit
   ];
   homepage = "https://github.com/sternenseemann/spacecookie";
-  description = "Gopher Server Library and Daemon";
+  description = "Gopher server library and daemon";
   license = lib.licenses.gpl3;
 }