Skip to content

Commit

Permalink
Bump version to 0.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed Oct 30, 2013
1 parent 17e3518 commit f8c5bc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
Expand Up @@ -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 <byvoid@byvoid.com>
Copyrights: (C) 2013 Carbo Kuo <byvoid@byvoid.com>
Expand Down
2 changes: 1 addition & 1 deletion src/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8c5bc7

Please sign in to comment.