diff --git a/README.md b/README.md index e2713cbe..4ab5837e 100644 --- a/README.md +++ b/README.md @@ -17,15 +17,17 @@ See [Issues](https://github.com/metosin/reitit/issues) for roadmap. All bundled: -[![Clojars Project](http://clojars.org/metosin/reitit/latest-version.svg)](http://clojars.org/metosin/reitit) +```clj +[metosin/reitit "0.1.0-SNAPSHOT"] +``` -In parts: +Optionally, the parts can be required separately: -[![Clojars Project](http://clojars.org/metosin/reitit-core/latest-version.svg)](http://clojars.org/metosin/reitit-core) - -[![Clojars Project](http://clojars.org/metosin/reitit-ring/latest-version.svg)](http://clojars.org/metosin/reitit-ring) - -[![Clojars Project](http://clojars.org/metosin/reitit-spec/latest-version.svg)](http://clojars.org/metosin/reitit-spec) +```clj +[metosin/reitit-core "0.1.0-SNAPSHOT"] ; just the router +[metosin/reitit-ring "0.1.0-SNAPSHOT"] ; ring-router +[metosin/reitit-spec "0.1.0-SNAPSHOT"] ; spec-coercion +``` ## Quick start diff --git a/project.clj b/project.clj index e0c03553..0141a2bf 100644 --- a/project.clj +++ b/project.clj @@ -15,7 +15,7 @@ [metosin/reitit-spec "0.1.0-SNAPSHOT"] [meta-merge "1.0.0"] - [metosin/spec-tools "0.5.0"]] + [metosin/spec-tools "0.5.1"]] :plugins [[jonase/eastwood "0.2.5"] [lein-doo "0.1.8"] @@ -32,13 +32,13 @@ "modules/reitit-ring/src" "modules/reitit-spec/src"] - :dependencies [[org.clojure/clojure "1.9.0-beta2"] + :dependencies [[org.clojure/clojure "1.9.0-beta4"] [org.clojure/clojurescript "1.9.946"] ;; all modules dependencies [metosin/reitit] - [expound "0.3.1"] + [expound "0.3.2"] [orchestra "2017.08.13"] [criterium "0.4.4"]