mirror of
https://github.com/metosin/reitit.git
synced 2025-12-18 08:51:12 +00:00
bump up version (all but docs)
This commit is contained in:
parent
8bf725f600
commit
18bd2e684f
12 changed files with 19 additions and 19 deletions
|
|
@ -3,4 +3,4 @@
|
|||
:dependencies [[org.clojure/clojure "1.9.0"]
|
||||
[ring "1.6.3"]
|
||||
[metosin/muuntaja "0.4.1"]
|
||||
[metosin/reitit "0.1.2"]])
|
||||
[metosin/reitit "0.1.3-SNAPSHOT"]])
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@
|
|||
:dependencies [[org.clojure/clojure "1.9.0"]
|
||||
[ring "1.6.3"]
|
||||
[metosin/muuntaja "0.4.1"]
|
||||
[metosin/reitit "0.1.2"]])
|
||||
[metosin/reitit "0.1.3-SNAPSHOT"]])
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
:dependencies [[org.clojure/clojure "1.9.0"]
|
||||
[ring "1.6.3"]
|
||||
[metosin/muuntaja "0.5.0"]
|
||||
[metosin/reitit "0.1.2"]]
|
||||
[metosin/reitit "0.1.3-SNAPSHOT"]]
|
||||
:repl-options {:init-ns example.server})
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-core "0.1.2"
|
||||
(defproject metosin/reitit-core "0.1.3-SNAPSHOT"
|
||||
:description "Snappy data-driven router for Clojure(Script)"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-ring "0.1.2"
|
||||
(defproject metosin/reitit-ring "0.1.3-SNAPSHOT"
|
||||
:description "Reitit: Ring routing"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-schema "0.1.2"
|
||||
(defproject metosin/reitit-schema "0.1.3-SNAPSHOT"
|
||||
:description "Reitit: Plumatic Schema coercion"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-spec "0.1.2"
|
||||
(defproject metosin/reitit-spec "0.1.3-SNAPSHOT"
|
||||
:description "Reitit: clojure.spec coercion"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-swagger-ui "0.1.2"
|
||||
(defproject metosin/reitit-swagger-ui "0.1.3-SNAPSHOT"
|
||||
:description "Reitit: Swagger-ui support"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-swagger "0.1.2"
|
||||
(defproject metosin/reitit-swagger "0.1.3-SNAPSHOT"
|
||||
:description "Reitit: Swagger-support"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit "0.1.2"
|
||||
(defproject metosin/reitit "0.1.3-SNAPSHOT"
|
||||
:description "Snappy data-driven router for Clojure(Script)"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
16
project.clj
16
project.clj
|
|
@ -1,4 +1,4 @@
|
|||
(defproject metosin/reitit-parent "0.1.2"
|
||||
(defproject metosin/reitit-parent "0.1.3-SNAPSHOT"
|
||||
:description "Snappy data-driven router for Clojure(Script)"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
@ -9,13 +9,13 @@
|
|||
:source-uri "https://github.com/metosin/reitit/{version}/{filepath}#L{line}"
|
||||
:metadata {:doc/format :markdown}}
|
||||
|
||||
:managed-dependencies [[metosin/reitit "0.1.2"]
|
||||
[metosin/reitit-core "0.1.2"]
|
||||
[metosin/reitit-ring "0.1.2"]
|
||||
[metosin/reitit-spec "0.1.2"]
|
||||
[metosin/reitit-schema "0.1.2"]
|
||||
[metosin/reitit-swagger "0.1.2"]
|
||||
[metosin/reitit-swagger-ui "0.1.2"]
|
||||
:managed-dependencies [[metosin/reitit "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-core "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-ring "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-spec "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-schema "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-swagger "0.1.3-SNAPSHOT"]
|
||||
[metosin/reitit-swagger-ui "0.1.3-SNAPSHOT"]
|
||||
|
||||
[meta-merge "1.0.0"]
|
||||
[ring/ring-core "1.6.3"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue