Skip to content

Commit

Permalink
v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Jun 25, 2022
1 parent 880cc9c commit 30136a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Works in [clojure JVM](#clojure) and [babashka](#babashka).
To your `deps.edn` add an alias:

``` clojure
:serve {:deps {org.babashka/http-server {:mvn/version "0.1.8"}}
:serve {:deps {org.babashka/http-server {:mvn/version "0.1.9"}}
:main-opts ["-m" "babashka.http-server"]
:exec-fn babashka.http-server/exec}
```
Expand All @@ -33,7 +33,7 @@ clj -X:serve :port 1339 :dir '"."'
Or install as a tool:

``` clojure
$ clj -Ttools install io.github.babashka/http-server '{:git/tag "v0.1.8"}' :as serve
$ clj -Ttools install io.github.babashka/http-server '{:git/tag "v0.1.9"}' :as serve
$ clj -Tserve exec
```

Expand All @@ -46,7 +46,7 @@ In a script, e.g. `/usr/local/bin/http-server`:

(require '[babashka.deps :as deps])
(deps/add-deps
'{:deps {org.babashka/http-server {:mvn/version "0.1.8"}}})
'{:deps {org.babashka/http-server {:mvn/version "0.1.9"}}})

(require '[babashka.http-server :as http-server])

Expand All @@ -62,7 +62,7 @@ $ http-server --port 8888 --dir resources/public
In `bb.edn` [tasks](https://book.babashka.org/#tasks):

``` clojure
{:deps {org.babashka/http-server {:mvn/version "0.1.8"}
{:deps {org.babashka/http-server {:mvn/version "0.1.9"}
org.babashka/cli {:mvn/version "0.2.23"}}
:tasks
{:requires ([babashka.cli :as cli])
Expand Down
2 changes: 1 addition & 1 deletion version.edn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{:major 0, :minor 1, :release 8}
{:major 0, :minor 1, :release 9}

0 comments on commit 30136a5

Please sign in to comment.