about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-16 22:37:34 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-16 22:45:23 +0100
commitbf3e8bfdbd322b5b009f32b49b5da0df039c7806 (patch)
tree18eecbbbe99e6f27cc2a5281a47ab3d356ed2a43
parentb0199ce7b0fa254a69b851b5e24c032ab93c4a99 (diff)
chore(treewide): release as 1.0.0.0 1.0.0.0
The 1.0.0.0 version number was chosen not to indicate completeness, but
rather to indicate how harsh of a jump it is from 0.2.1.2 to 1.0.0.0 for
library users since the core API was changed.

For server users which are probably the majority it should go relatively
smoothly in comparison.
-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;
 }