diff --git a/README.md b/README.md index eafe6e2..ed1618d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Batsh is implemented in [OCaml](http://caml.inria.fr/ocaml/) and managed by [OPA 3. `make` 4. Run: `./main.byte` -You can install dependencies by running `opam install core menhir ounit dlist` +You can install dependencies by running `opam install core menhir ounit dlist cmdliner` If you want to run unit tests, configure with `./configure --enable-tests`, and run `make test`. diff --git a/_oasis b/_oasis index 5b9d471..5f90d47 100644 --- a/_oasis +++ b/_oasis @@ -2,7 +2,7 @@ OASISFormat: 0.3 OCamlVersion: >= 4.00.1 FindlibVersion: >= 1.3.2 Name: batsh -Version: 0.0.3 +Version: 0.0.4 Synopsis: Batsh - A language that compiles to Bash and Windows Batch Authors: BYVoid Copyrights: (C) 2013 Carbo Kuo diff --git a/src/main.ml b/src/main.ml index f45c188..467598f 100644 --- a/src/main.ml +++ b/src/main.ml @@ -105,7 +105,7 @@ let batsh = let default_cmd = let doc = "A language that compiles to Bash and Windows Batch." in Term.(ret (pure (fun _ -> `Help (`Plain, None)) $ (Term.pure ()) )), - Term.info "batsh" ~version:"0.0.3" ~doc + Term.info "batsh" ~version:"0.0.4" ~doc let () = match Term.eval_choice default_cmd [bash; winbat; batsh] with