representable-functors 3.0.0.3 → 3.0.1
raw patch · 7 files changed
+92/−14 lines, 7 filesdep ~comonaddep ~comonad-transformersdep ~comonads-fdPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: comonad, comonad-transformers, comonads-fd, contravariant, distributive, free, keys, semigroupoids, semigroups
API changes (from Hackage documentation)
Files
- .ghci +1/−0
- .gitignore +13/−0
- .travis.yml +7/−0
- .vim.custom +31/−0
- CHANGELOG.markdown +5/−0
- README.markdown +15/−0
- representable-functors.cabal +20/−14
+ .ghci view
@@ -0,0 +1,1 @@+:set -isrc -idist/build/autogen -optP-include -optPdist/build/autogen/cabal_macros.h
+ .gitignore view
@@ -0,0 +1,13 @@+dist+docs+wiki+TAGS+tags+wip+.DS_Store+.*.swp+.*.swo+*.o+*.hi+*~+*#
.travis.yml view
@@ -1,1 +1,8 @@ language: haskell+notifications:+ irc:+ channels:+ - "irc.freenode.org#haskell-lens"+ skip_join: true+ template:+ - "\x0313representable-functors\x03/\x0306%{branch}\x03 \x0314%{commit}\x03 %{build_url} %{message}"
+ .vim.custom view
@@ -0,0 +1,31 @@+" Add the following to your .vimrc to automatically load this on startup++" if filereadable(".vim.custom")+" so .vim.custom+" endif++function StripTrailingWhitespace()+ let myline=line(".")+ let mycolumn = col(".")+ silent %s/ *$//+ call cursor(myline, mycolumn)+endfunction++" enable syntax highlighting+syntax on++" search for the tags file anywhere between here and /+set tags=TAGS;/++" highlight tabs and trailing spaces+set listchars=tab:‗‗,trail:‗+set list++" f2 runs hasktags+map <F2> :exec ":!hasktags -x -c --ignore src"<CR><CR>++" strip trailing whitespace before saving+" au BufWritePre *.hs,*.markdown silent! cal StripTrailingWhitespace()++" rebuild hasktags after saving+au BufWritePost *.hs silent! :exec ":!hasktags -x -c --ignore src"
+ CHANGELOG.markdown view
@@ -0,0 +1,5 @@+3.0.1+-----+* Removed intra-package dependencies+* Added `README.markdown`+* Added IRC build-bot notification
+ README.markdown view
@@ -0,0 +1,15 @@+representable-functors+======================++[](http://travis-ci.org/ekmett/representable-functors)++This package provides representable functors for haskell. In category theory a representable functor (more pedantically a corepresentable functor) is one such that `f a` is isomorphic to `x -> a`. We choose the name `Representable` here because we are talking about haskell `Functor` instances, and they are all covariant, so this is the more natural notion of representability for Haskell.++Contact Information+-------------------++Contributions and bug reports are welcome!++Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net.++-Edward Kmett
representable-functors.cabal view
@@ -1,6 +1,6 @@ name: representable-functors category: Monads, Functors, Data Structures-version: 3.0.0.3+version: 3.0.1 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE@@ -13,7 +13,13 @@ synopsis: Representable functors description: Representable functors build-type: Simple-extra-source-files: .travis.yml+extra-source-files:+ .ghci+ .gitignore+ .vim.custom+ .travis.yml+ README.markdown+ CHANGELOG.markdown source-repository head type: git@@ -35,19 +41,19 @@ build-depends: array >= 0.3.0.2 && < 0.5,- base >= 4 && < 5,- comonad >= 3.0 && < 3.1,- comonad-transformers >= 3.0 && < 3.1,- comonads-fd >= 3.0 && < 3.1,- containers >= 0.3 && < 0.6,- contravariant >= 0.2.0.1 && < 0.3,- distributive >= 0.2.2 && < 0.4,- free >= 3.0 && < 3.4,- keys >= 3.0 && < 3.1,+ base >= 4 && < 5,+ comonad >= 3,+ comonad-transformers >= 3,+ comonads-fd >= 3,+ containers >= 0.3 && < 0.6,+ contravariant >= 0.2.0.1,+ distributive >= 0.2.2,+ free >= 3,+ keys >= 3, mtl >= 2.0.1.0 && < 2.2,- semigroups >= 0.8.3.1 && < 0.9,- semigroupoids >= 3.0 && < 3.1,- transformers >= 0.2 && < 0.4+ semigroups >= 0.8.3.1,+ semigroupoids >= 3,+ transformers >= 0.2 && < 0.4 exposed-modules: Data.Functor.Corepresentable