mirror of
https://github.com/lexi-lambda/freer-simple.git
synced 2024-12-24 14:43:57 +03:00
fix: deadname issue, update copyright
This commit is contained in:
parent
db5e7a2c06
commit
995e2d69bd
4
LICENSE
4
LICENSE
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2015, Alej Cabrera
|
||||
Copyright (c) 2016, Allele Dev
|
||||
|
||||
All rights reserved.
|
||||
|
||||
@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met:
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
* Neither the name of Alej Cabrera nor the names of other
|
||||
* Neither the name of Allele Dev nor the names of other
|
||||
contributors may be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer
|
||||
Description : Freer - an extensible effects library
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Coroutine
|
||||
Description : Composable coroutine effects layer.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : broken
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -5,9 +5,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Cut
|
||||
Description : An implementation of logical Cut
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : broken
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -5,9 +5,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Exception
|
||||
Description : An Exception effect and handler.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Fresh
|
||||
Description : Generation of fresh integers as an effect.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : broken
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -14,9 +14,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Internal
|
||||
Description : Mechanisms to make effects work
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Reader
|
||||
Description : Reader effects, for encapsulating an environment
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.State
|
||||
Description : State effects, for state-carrying computations.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.StateRW
|
||||
Description : State effects in terms of Reader/Writer
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Trace
|
||||
Description : Composable Trace effects
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
{-|
|
||||
Module : Control.Monad.Freer.Writer
|
||||
Description : Composable Writer effects -
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -3,9 +3,9 @@
|
||||
{-|
|
||||
Module : Data.FTCQueue
|
||||
Description : Fast type-aligned queue optimized to effectful functions.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
{-|
|
||||
Module : Data.Open.Union
|
||||
Description : Open unions (type-indexed co-products) for extensible effects.
|
||||
Copyright : Alej Cabrera 2015
|
||||
Copyright : Allele Dev 2016
|
||||
License : BSD-3
|
||||
Maintainer : cpp.cabrera@gmail.com
|
||||
Maintainer : allele.dev@gmail.com
|
||||
Stability : experimental
|
||||
Portability : POSIX
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user