desert 0.1.0.1 → 0.1.0.3
raw patch · 2 files changed
+61/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +57/−0
- desert.cabal +4/−2
+ README.md view
@@ -0,0 +1,57 @@+# desert++[](https://travis-ci.org/zjhmale/desert)+[](https://hackage.haskell.org/package/desert)+[](https://hackage.haskell.org/package/desert)++## Acknowledgement++well, this project aims to make developing with OCaml projects painless. it is still in early stage, so currently just for self usage.++## Install++```+cabal install desert+```++## Usage++* create project++```+desert new NAME+```++* build++```+desert build+```++* run++```+desert run+```++* test++```+desert test+```++* clean++```+desert clean+```++## Screenshot++++## License++Copyright © 2016 zjhmale++Distributed under the [](https://en.wikipedia.org/wiki/BSD_licenses)
desert.cabal view
@@ -1,7 +1,7 @@ name: desert-version: 0.1.0.1+version: 0.1.0.3 synopsis: a simple build tool for OCaml projects-description: Please see README.md+description: Check out <https://github.com/zjhmale/desert#readme the readme> for documentation. homepage: https://github.com/zjhmale/desert license: BSD3 license-file: LICENSE@@ -12,6 +12,8 @@ build-type: Simple -- extra-source-files: cabal-version: >=1.10+extra-source-files:+ README.md library hs-source-dirs: src