blunt 0.0.6 → 0.0.7
raw patch · 3 files changed
+55/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +49/−2
- blunt.cabal +2/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change log +## v0.0.7 (2015-03-19)++- Fixed link in Hackage documentation.+ ## v0.0.6 (2015-03-19) - Switch from Bitbucket to GitHub.
README.md view
@@ -1,3 +1,50 @@-# Blunt+<h1 align="center">+ <a href="https://github.com/tfausak/blunt">+ Blunt+ </a>+</h1> -Point-free Haskell as a service.+<p align="center">+ Blunt makes Haskell expressions pointfree.+</p>++<p align="center">+ <a href="https://hackage.haskell.org/package/blunt">+ <img alt="" src="https://img.shields.io/hackage/v/blunt.svg">+ </a>+ <a href="http://packdeps.haskellers.com/feed?needle=blunt">+ <img alt="" src="https://img.shields.io/hackage-deps/v/blunt.svg">+ </a>+</p>++<hr>++## Install++``` sh+$ cabal update+$ cabal install 'blunt ==0.0.*'+```++## Develop++``` sh+$ git clone https://github.com/tfausak/blunt+$ cd blunt+$ cabal sandbox init+$ cabal install happy+$ cabal install+```++## Deploy++``` sh+$ heroku create+$ git checkout -b deploy+$ echo 'web: ./blunt' > Procfile+$ cp dist/build/blunt/blunt .+$ touch requirements.txt+$ git add Procfile blunt requirements.txt+$ git commit -m v0.0.7+$ git push heroku deploy:master+```
blunt.cabal view
@@ -1,5 +1,5 @@ name: blunt-version: 0.0.6+version: 0.0.7 cabal-version: >=1.10 build-type: Simple license: MIT@@ -7,7 +7,7 @@ maintainer: Taylor Fausak <taylor@fausak.me> synopsis: Point-free Haskell as a service. description:- https://github.com/tfausak/blunt+ <https://github.com/tfausak/blunt> category: Web extra-source-files: CHANGELOG.md