From 9486d3ac0a90f8733e511ad50a44bc2fecbbd316 Mon Sep 17 00:00:00 2001 From: Bruce Hauman Date: Mon, 25 Jun 2018 20:18:03 -0400 Subject: [PATCH] release 0.1.4 --- README.md | 8 ++++---- rebel-readline-cljs/project.clj | 4 ++-- rebel-readline/CHANGELOG.md | 6 ++++++ rebel-readline/project.clj | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f62b9c0..874c666 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ If you want to try this really quickly and then invoke this: ```shell -clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.3\"}}}" -m rebel-readline.main +clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.4\"}}}" -m rebel-readline.main ``` That should start a Clojure REPL that takes its input from the Rebel readline editor. @@ -50,7 +50,7 @@ Alternatively you can specify an alias in your `$HOME/.clojure/deps.edn` ```clojure { ... - :aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.3"}} + :aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}} :main-opts ["-m" "rebel-readline.main"]}} } ``` @@ -63,7 +63,7 @@ $ clojure -A:rebel #### Leiningen -Add `[com.bhauman/rebel-readline "0.1.3"]` to the dependencies in your +Add `[com.bhauman/rebel-readline "0.1.4"]` to the dependencies in your `project.clj` then start a REPL like this: ```shell @@ -75,7 +75,7 @@ Alternatively, you can add rebel-readline globally to `$HOME/.lein/profiles.clj` ```clojure { ... - :user {:dependencies [[com.bhauman/rebel-readline "0.1.3"]]} + :user {:dependencies [[com.bhauman/rebel-readline "0.1.4"]]} } ``` diff --git a/rebel-readline-cljs/project.clj b/rebel-readline-cljs/project.clj index b31a524..f28785b 100644 --- a/rebel-readline-cljs/project.clj +++ b/rebel-readline-cljs/project.clj @@ -1,4 +1,4 @@ -(defproject com.bhauman/rebel-readline-cljs "0.1.4-SNAPSHOT" +(defproject com.bhauman/rebel-readline-cljs "0.1.4" :description "A rebel readline service for ClojureScript" :url "https://github.com/bhauman/rebel-readline" :license {:name "Eclipse Public License" @@ -8,7 +8,7 @@ :url "https://github.com/bhauman/rebel-readline" :dir ".."} - :dependencies [[com.bhauman/rebel-readline "0.1.3"] + :dependencies [[com.bhauman/rebel-readline "0.1.4"] [org.clojure/clojurescript "1.9.946"] [cljs-tooling "0.2.0"]] diff --git a/rebel-readline/CHANGELOG.md b/rebel-readline/CHANGELOG.md index 7a8a370..918970c 100644 --- a/rebel-readline/CHANGELOG.md +++ b/rebel-readline/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.4 Removed regex stack overflow for large strings + +It is very confusing to get an error from the value printer, so this merits a release. + +* https://github.com/bhauman/rebel-readline/issues/161 + # 0.1.3 Improved Completion and Faster startup Rebel Readline loads 2x faster and Completion now narrows choices as you type. diff --git a/rebel-readline/project.clj b/rebel-readline/project.clj index 3e19a79..04a5237 100644 --- a/rebel-readline/project.clj +++ b/rebel-readline/project.clj @@ -1,4 +1,4 @@ -(defproject com.bhauman/rebel-readline "0.1.4-SNAPSHOT" +(defproject com.bhauman/rebel-readline "0.1.4" :description "Terminal readline library for Clojure dialects" :url "https://github.com/bhauman/rebel-readline" :license {:name "Eclipse Public License"