streams 3.0.1 → 3.0.1.1
raw patch · 5 files changed
+79/−2 lines, 5 files
Files
- .ghci +1/−0
- .gitignore +13/−0
- .vim.custom +31/−0
- CHANGELOG.markdown +26/−0
- streams.cabal +8/−2
+ .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+*~+*#
+ .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,26 @@+3.0.1+-----+* Removed intra-package dependency bounds for my packages+* Build system improvements+* IRC Buildbot notification++3.0+---+* Version sync with the rest of my packages++0.7+--+* "Data.Stream.NonEmpty" renamed to "Data.List.NonEmpty" and pushed upstream into the semigroups package.++0.6.3+-----+* Removed a redundant UNPACK pragma++0.5.1+-----+* Data.Stream.Supply added++Since 0.1:+----------+* A number of strictness issues with 'NonEmpty' were fixed+* More documentation
streams.cabal view
@@ -1,6 +1,6 @@ name: streams category: Control, Comonads-version: 3.0.1+version: 3.0.1.1 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE@@ -15,7 +15,13 @@ Copyright 2008 Iavor S. Diatchki synopsis: Various Haskell 2010 stream comonads build-type: Simple-extra-source-files: README .travis.yml+extra-source-files:+ CHANGELOG.markdown+ README+ .ghci+ .gitignore+ .travis.yml+ .vim.custom description: Various Haskell 2010 stream comonads. * "Data.Stream.Future" provides a coinductive anti-causal stream, or non-empty 'ZipList'. The comonad provides access to only the