Skip to content

Commit

Permalink
chore(treewide): release as 1.0.0.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sternenseemann committed Mar 16, 2021
1 parent b0199ce commit bf3e8bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Revision history for spacecookie

## 1.0.0.0 (UNRELEASED)
## 1.0.0.0

2021-03-16

TL;DR:

Expand Down
2 changes: 1 addition & 1 deletion spacecookie.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions spacecookie.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit bf3e8bf

Please sign in to comment.