From 1d74dd31b7f97d15aafa558f056fa6e0bbaae107 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Fri, 8 Sep 2017 08:34:34 +0300 Subject: [PATCH] Clojure 1.9.0-alpha20 --- README.md | 8 ++++---- project.clj | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d3e5e357..067cafd0 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ A friendly data-driven router for Clojure(Script). -* Simple data-driven route syntax -* First-class route meta-data +* Simple data-driven [route syntax](#route-syntax) +* First-class [route meta-data](#route-meta-data) * Generic, not tied to HTTP * [Route conflict resolution](#route-conflicts) * [Pluggable coercion](#parameter-coercion) ([clojure.spec](https://clojure.org/about/spec)) -* both Middleware & Interceptors +* both [Middleware](#middleware) & Interceptors * Extendable * Fast @@ -446,7 +446,7 @@ Reitit provides pluggable parameter coercion via `reitit.coercion.protocol/Coerc **NOTE**: Before Clojure 1.9.0 is shipped, to use the spec-coercion, one needs to add the following dependencies manually to the project: ```clj -[org.clojure/clojure "1.9.0-alpha19"] +[org.clojure/clojure "1.9.0-alpha20"] [org.clojure/spec.alpha "0.1.123"] [metosin/spec-tools "0.3.3"] ``` diff --git a/project.clj b/project.clj index f843d35e..6f1cd5f9 100644 --- a/project.clj +++ b/project.clj @@ -20,7 +20,7 @@ [lein-cloverage "1.0.9"] [lein-codox "0.10.3"]] :jvm-opts ^:replace ["-server"] - :dependencies [[org.clojure/clojure "1.9.0-alpha19"] + :dependencies [[org.clojure/clojure "1.9.0-alpha20"] [org.clojure/clojurescript "1.9.660"] [metosin/spec-tools "0.3.3"]