From c233f1f48b96c6eebbbb5235ef914fd1d18738f5 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 23 May 2019 10:15:35 +0200 Subject: Release 0.2.0.0 --- .gitignore | 15 ++++++++++++--- CHANGELOG.md | 8 ++++++++ spacecookie.cabal | 4 ++-- stack.yaml | 32 -------------------------------- 4 files changed, 22 insertions(+), 37 deletions(-) create mode 100644 CHANGELOG.md delete mode 100644 stack.yaml 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] -- cgit 1.4.1