mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
Fix versions
This commit is contained in:
parent
e204d4ff1b
commit
e1f9cfb286
3 changed files with 6 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
(defproject fi.metosin/reitit-openapi "0.7.0-alpha1"
|
||||
(defproject fi.metosin/reitit-openapi "0.7.0-alpha2"
|
||||
:description "Reitit: OpenAPI-support"
|
||||
:url "https://github.com/metosin/reitit"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
[metosin/reitit-http "0.7.0-alpha2"]
|
||||
[metosin/reitit-interceptors "0.7.0-alpha2"]
|
||||
[metosin/reitit-swagger "0.7.0-alpha2"]
|
||||
[fi.metosin/reitit-openapi "0.7.0-alpha1"]
|
||||
[fi.metosin/reitit-openapi "0.7.0-alpha2"]
|
||||
[metosin/reitit-swagger-ui "0.7.0-alpha2"]
|
||||
[metosin/reitit-frontend "0.7.0-alpha2"]
|
||||
[metosin/reitit-sieppari "0.7.0-alpha2"]
|
||||
|
|
|
|||
|
|
@ -2,7 +2,11 @@
|
|||
|
||||
ext="sedbak$$"
|
||||
|
||||
# metosin/reitit-*
|
||||
find . -name project.clj -exec sed -i.$ext "s/\[metosin\/reitit\(.*\) \".*\"\]/[metosin\/reitit\1 \"$1\"\]/g" '{}' \;
|
||||
find . -name project.clj -exec sed -i.$ext "s/defproject metosin\/reitit\(.*\) \".*\"/defproject metosin\/reitit\1 \"$1\"/g" '{}' \;
|
||||
# fi.metosin/reitit-*
|
||||
find . -name project.clj -exec sed -i.$ext "s/\[fi.metosin\/reitit\(.*\) \".*\"\]/[fi.metosin\/reitit\1 \"$1\"\]/g" '{}' \;
|
||||
find . -name project.clj -exec sed -i.$ext "s/defproject fi.metosin\/reitit\(.*\) \".*\"/defproject fi.metosin\/reitit\1 \"$1\"/g" '{}' \;
|
||||
sed -i.$ext "s/\[metosin\/reitit\(.*\) \".*\"\]/[metosin\/reitit\1 \"$1\"\]/g" README.md doc/**/*.md
|
||||
find . -name "*.$ext" -exec rm '{}' \;
|
||||
|
|
|
|||
Loading…
Reference in a new issue