microlens-contra 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+12/−3 lines, 4 files
Files
- CHANGELOG.md +4/−0
- LICENSE +2/−1
- microlens-contra.cabal +2/−2
- src/Lens/Micro/Contra.hs +4/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.0.1++* Added forgotten copyright/authorship information.+ # 0.1.0.0 Initial release.
LICENSE view
@@ -1,4 +1,5 @@-Copyright (c) 2015, Artyom+Copyright (c) 2013-2016 Edward Kmett,+ 2015-2016 Artyom All rights reserved.
microlens-contra.cabal view
@@ -1,5 +1,5 @@ name: microlens-contra-version: 0.1.0.0+version: 0.1.0.1 synopsis: True folds and getters for microlens description: This package provides @Fold@ and @Getter@ that are fully compatible with lens; the downside is that this package depends on contravariant, which in its turn depends on a lot of other packages (but still less than lens).@@ -9,7 +9,7 @@ This package is a part of the <http://hackage.haskell.org/package/microlens microlens> family; see the readme <https://github.com/aelve/microlens#readme on Github>. license: BSD3 license-file: LICENSE-author: Artyom+author: Edward Kmett, Artyom maintainer: Artyom <yom@artyom.me> homepage: http://github.com/aelve/microlens bug-reports: http://github.com/aelve/microlens/issues
src/Lens/Micro/Contra.hs view
@@ -6,6 +6,10 @@ {- |+Module : Lens.Micro.Contra+Copyright : (C) 2013-2016 Edward Kmett, 2015-2016 Artyom+License : BSD-style (see the file LICENSE)+ This module provides types and functions that require 'Contravariant'; they aren't included in the main microlens package because <http://hackage.haskell.org/package/contravariant contravariant> has a lot of dependencies. -} module Lens.Micro.Contra