From 88033cf50e896675a030233939d867e75cc6fe3b Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Sep 2022 05:54:30 +0900 Subject: [PATCH 1/3] docs: Bump cider-nrepl to 0.28.6 --- bin/iced | 2 +- deps.edn | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/iced b/bin/iced index 6c15c783..ddc9d9f2 100755 --- a/bin/iced +++ b/bin/iced @@ -9,7 +9,7 @@ SCRIPT_DIR=$(cd $(dirname $0); pwd) PROJECT_DIR=$(cd $SCRIPT_DIR; cd ..; pwd) VERSION=$(grep 'Version: ' ${SCRIPT_DIR}/../doc/vim-iced.txt | cut -d' ' -f2) -BASE_DEPENDENCIES='nrepl/nrepl:1.0.0 refactor-nrepl/refactor-nrepl:3.5.5 cider/cider-nrepl:0.28.5 com.github.liquidz/iced-nrepl:1.2.468' +BASE_DEPENDENCIES='nrepl/nrepl:1.0.0 refactor-nrepl/refactor-nrepl:3.5.5 cider/cider-nrepl:0.28.6 com.github.liquidz/iced-nrepl:1.2.468' BASE_MIDDLEWARES='cider.nrepl/wrap-classpath cider.nrepl/wrap-clojuredocs cider.nrepl/wrap-complete cider.nrepl/wrap-debug cider.nrepl/wrap-format cider.nrepl/wrap-info cider.nrepl/wrap-macroexpand cider.nrepl/wrap-ns cider.nrepl/wrap-out cider.nrepl/wrap-refresh cider.nrepl/wrap-stacktrace cider.nrepl/wrap-spec cider.nrepl/wrap-test cider.nrepl/wrap-trace cider.nrepl/wrap-undef cider.nrepl/wrap-xref refactor-nrepl.middleware/wrap-refactor iced.nrepl/wrap-iced' CLJS_DEPENDENCIES='cider/piggieback:0.5.3' diff --git a/deps.edn b/deps.edn index 735d1744..6eb44274 100644 --- a/deps.edn +++ b/deps.edn @@ -1,7 +1,7 @@ {:paths ["clj/repl"] :deps {nrepl/nrepl {:mvn/version "1.0.0"} refactor-nrepl/refactor-nrepl {:mvn/version "3.5.5"} - cider/cider-nrepl {:mvn/version "0.28.5"} + cider/cider-nrepl {:mvn/version "0.28.6"} com.github.liquidz/iced-nrepl {:mvn/version "1.2.468"}} :__middlewares__ ["cider.nrepl/wrap-classpath" From 6dc76e61eb005eaffcf3f7e12133ef45e3dad2d7 Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Sep 2022 05:55:55 +0900 Subject: [PATCH 2/3] docs: Update help --- doc/vim-iced.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index 068fa080..31962390 100644 --- a/doc/vim-iced.txt +++ b/doc/vim-iced.txt @@ -143,7 +143,7 @@ LEININGEN~ {:user {:dependencies [[nrepl "1.0.0"] [com.github.liquidz/iced-nrepl "1.2.468"] - [cider/cider-nrepl "0.28.5"]] + [cider/cider-nrepl "0.28.6"]] :repl-options {:nrepl-middleware [cider.nrepl/wrap-classpath cider.nrepl/wrap-clojuredocs cider.nrepl/wrap-complete @@ -173,7 +173,7 @@ BOOT~ (swap! boot.repl/*default-dependencies* concat '[[refactor-nrepl "3.5.5"] - [cider/cider-nrepl "0.28.5"] + [cider/cider-nrepl "0.28.6"] [com.github.liquidz/iced-nrepl "1.2.468"]]) (swap! boot.repl/*default-middleware* concat @@ -203,7 +203,7 @@ SHADOW-CLJS~ > { :dependencies [[refactor-nrepl "3.5.5"] - [cider/cider-nrepl "0.28.5"] + [cider/cider-nrepl "0.28.6"] [com.github.liquidz/iced-nrepl "1.2.468"]] } < From bb34098d3d015a2d83725cdd6567eaf13b83ebdf Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Sep 2022 06:04:02 +0900 Subject: [PATCH 3/3] docs: Update CHANGELOG --- CHANGELOG.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 00bf2145..8c558b5e 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,6 +1,10 @@ All notable changes to this project will be documented in this file. This change log follows the conventions of http://keepachangelog.com/[keepachangelog.com]. == Unreleased (dev) +// {{{ +=== Changed +* Bumped cider-nrepl to 0.28.6. +// }}} == 3.12.3153 (2022-09-12) // {{{