From 5b3b72e127170d7f196a60d1c3f01d007bed0081 Mon Sep 17 00:00:00 2001 From: hellerve Date: Fri, 31 Jan 2020 22:30:42 +0100 Subject: [PATCH] vbump --- README.md | 4 ++-- cli.carp | 4 ++-- docs/CLI.html | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dcea02b..886bd93 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A simple CLI library for Carp. ```clojure -(load "https://veitheller.de/git/carpentry/cli@0.0.5") +(load "https://veitheller.de/git/carpentry/cli@0.0.6") (defn main [] (let [p (=> (CLI.new @"My super cool tool!") @@ -18,7 +18,7 @@ A simple CLI library for Carp. ## Installation ```clojure -(load "https://veitheller.de/git/carpentry/cli@0.0.5") +(load "https://veitheller.de/git/carpentry/cli@0.0.6") ``` ## Usage diff --git a/cli.carp b/cli.carp index 7ca4982..01da2a1 100644 --- a/cli.carp +++ b/cli.carp @@ -6,7 +6,7 @@ (doc CLI "is a simple CLI library for Carp. ```clojure -(load \"https://veitheller.de/git/carpentry/cli@0.0.5\") +(load \"https://veitheller.de/git/carpentry/cli@0.0.6\") (defn main [] (let [p (=> (CLI.new @\"My super cool tool!\") @@ -21,7 +21,7 @@ ## Installation ```clojure -(load \"https://veitheller.de/git/carpentry/cli@0.0.5\") +(load \"https://veitheller.de/git/carpentry/cli@0.0.6\") ``` ## Usage diff --git a/docs/CLI.html b/docs/CLI.html index bb1feef..430782c 100644 --- a/docs/CLI.html +++ b/docs/CLI.html @@ -30,7 +30,7 @@

is a simple CLI library for Carp.

-
(load "https://veitheller.de/git/carpentry/cli@0.0.5")
+
(load "https://veitheller.de/git/carpentry/cli@0.0.6")
 
 (defn main []
   (let [p (=> (CLI.new @"My super cool tool!")
@@ -42,7 +42,7 @@
       (Result.Error msg) (do (IO.errorln &msg) (CLI.usage &p)))))
 

Installation

-
(load "https://veitheller.de/git/carpentry/cli@0.0.5")
+
(load "https://veitheller.de/git/carpentry/cli@0.0.6")
 

Usage

CLI should be built using combinators, as in the example above. It has, as of