about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2019-05-23 10:15:35 +0200
committersternenseemann <git@lukasepple.de>2019-05-23 10:15:35 +0200
commitc233f1f48b96c6eebbbb5235ef914fd1d18738f5 (patch)
tree60714b6ca3100efa18a76cde6ae1c6df1350751f
parent39001d0f70891caab774376a48f61b91a66d9f30 (diff)
Release 0.2.0.0 0.2.0.0
-rw-r--r--.gitignore15
-rw-r--r--CHANGELOG.md8
-rw-r--r--spacecookie.cabal4
-rw-r--r--stack.yaml32
4 files changed, 22 insertions, 37 deletions
diff --git a/.gitignore b/.gitignore
index ed8b216..61b41cd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,10 @@
-.stack-work
+
+# Created by https://www.gitignore.io/api/haskell
+# Edit at https://www.gitignore.io/?templates=haskell
+
+### Haskell ###
 dist
+dist-*
 cabal-dev
 *.o
 *.hi
@@ -7,15 +12,19 @@ cabal-dev
 *.chs.h
 *.dyn_o
 *.dyn_hi
-.virtualenv
 .hpc
 .hsenv
 .cabal-sandbox/
 cabal.sandbox.config
-cabal.config
 *.prof
 *.aux
 *.hp
+*.eventlog
+.stack-work/
+cabal.project.local
+cabal.project.local~
+.HTF/
+.ghc.environment.*
 
 # nix
 result
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..99ae11b
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,8 @@
+# Revision history for spacecookie
+
+## 0.2.0.0 initial release
+
+* First version. Released on an unsuspecting world. Includes:
+  * Library for writing any gopher server / application.
+  * File system based gopher server with support for gopher maps.
+  * Supports logging, privilege dropping, the gopher protocol and common extensions.
diff --git a/spacecookie.cabal b/spacecookie.cabal
index e3ff6c4..6a9eff7 100644
--- a/spacecookie.cabal
+++ b/spacecookie.cabal
@@ -4,14 +4,14 @@ synopsis:            gopher server daemon
 description:         simple gopher server daemon
 license:             GPL-3
 license-file:        LICENSE
-author:              sternenseemann
+author:              Lukas Epple
 maintainer:          git@lukasepple.de
 category:            Network
 build-type:          Simple
 cabal-version:       >=1.10
 homepage:            https://github.com/sternenseemann/spacecookie
 bug-reports:         https://github.com/sternenseemann/spacecookie/issues
-extra-source-files:  ChangeLog.md
+extra-source-files:  CHANGELOG.md
                      README.md
                      etc/spacecookie.json
                      etc/spacecookie.service
diff --git a/stack.yaml b/stack.yaml
deleted file mode 100644
index 1378801..0000000
--- a/stack.yaml
+++ /dev/null
@@ -1,32 +0,0 @@
-# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
-
-# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
-resolver: lts-3.12
-
-# Local packages, usually specified by relative directory name
-packages:
-- '.'
-
-# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
-extra-deps: []
-
-# Override default flag values for local packages and extra-deps
-flags: {}
-
-# Extra package databases containing global packages
-extra-package-dbs: []
-
-# Control whether we use the GHC we find on the path
-# system-ghc: true
-
-# Require a specific version of stack, using version ranges
-# require-stack-version: -any # Default
-# require-stack-version: >= 0.1.4.0
-
-# Override the architecture used by stack, especially useful on Windows
-# arch: i386
-# arch: x86_64
-
-# Extra directories used by stack for building
-# extra-include-dirs: [/path/to/dir]
-# extra-lib-dirs: [/path/to/dir]