Skip to content

Commit

Permalink
0.4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hadronized committed Sep 20, 2014
1 parent 943ab34 commit 548110a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# CHANGELOG

### 0.4.0.2

- added the changelog in the package description (.cabal).

### 0.4.0.1

- added the *source-repository head* field in the .cabal file ;
- added the *bug-reports* field in the .cabal file ;
- change *author* and *maintainer* format

### 0.4

- actually, lower bound is better for now; using mtl-2.1.
Expand Down
19 changes: 15 additions & 4 deletions monad-journal.cabal
@@ -1,36 +1,47 @@
name: monad-journal
license: PublicDomain
version: 0.4
version: 0.4.0.2
synopsis: Pure logger typeclass and monad transformer
description: This package provides a typeclass for logging in
pure code, or more generally, in any kind of
context. You can do whatever you want with
logs, especially get them, clear them or even
sink them through 'IO' if you're logging in
@(MonadIO m) => m@.
homepage: https://github.com/phaazon/monad-journal
author: DimitriSabadie
maintainer: dimitri.sabadie@gmail.com
homepage: http://github.com/phaazon/monad-journal
bug-reports: http://github.com/phaazon/monad-journal/issues
author: Dimitri Sabadie <dimitri.sabadie@gmail.com>
maintainer: Dimitri Sabadie <dimitri.sabadie@gmail.com>
category: Control
build-type: Simple

cabal-version: >= 1.10

extra-source-files: CHANGELOG.md

source-repository head
type: git
location: git://github.com/phaazon/monad-journal.git

library
default-extensions: BangPatterns
, FlexibleInstances
, MultiParamTypeClasses

other-extensions: FunctionalDependencies
, GeneralizedNewtypeDeriving
, TypeFamilies
, UndecidableInstances

exposed-modules: Control.Monad.Journal
, Control.Monad.Journal.Class
, Control.Monad.Trans.Journal

build-depends: base >= 4.5 && < 4.8
, mtl >= 2.1 && < 2.3
, transformers >= 0.3 && < 0.5
, either >= 4.1 && < 4.4
, monad-control >= 0.3 && < 0.4
, transformers-base >= 0.4 && < 0.5

default-language: Haskell2010

0 comments on commit 548110a

Please sign in to comment.