Skip to content

Commit 9486d3a

Browse files
author
Bruce Hauman
committed
release 0.1.4
1 parent 8a40903 commit 9486d3a

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you want to try this really quickly
3737
and then invoke this:
3838

3939
```shell
40-
clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.3\"}}}" -m rebel-readline.main
40+
clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.4\"}}}" -m rebel-readline.main
4141
```
4242

4343
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`
5050
```clojure
5151
{
5252
...
53-
:aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.3"}}
53+
:aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}}
5454
:main-opts ["-m" "rebel-readline.main"]}}
5555
}
5656
```
@@ -63,7 +63,7 @@ $ clojure -A:rebel
6363

6464
#### Leiningen
6565

66-
Add `[com.bhauman/rebel-readline "0.1.3"]` to the dependencies in your
66+
Add `[com.bhauman/rebel-readline "0.1.4"]` to the dependencies in your
6767
`project.clj` then start a REPL like this:
6868

6969
```shell
@@ -75,7 +75,7 @@ Alternatively, you can add rebel-readline globally to `$HOME/.lein/profiles.clj`
7575
```clojure
7676
{
7777
...
78-
:user {:dependencies [[com.bhauman/rebel-readline "0.1.3"]]}
78+
:user {:dependencies [[com.bhauman/rebel-readline "0.1.4"]]}
7979
}
8080
```
8181

rebel-readline-cljs/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.bhauman/rebel-readline-cljs "0.1.4-SNAPSHOT"
1+
(defproject com.bhauman/rebel-readline-cljs "0.1.4"
22
:description "A rebel readline service for ClojureScript"
33
:url "https://github.com/bhauman/rebel-readline"
44
:license {:name "Eclipse Public License"
@@ -8,7 +8,7 @@
88
:url "https://github.com/bhauman/rebel-readline"
99
:dir ".."}
1010

11-
:dependencies [[com.bhauman/rebel-readline "0.1.3"]
11+
:dependencies [[com.bhauman/rebel-readline "0.1.4"]
1212
[org.clojure/clojurescript "1.9.946"]
1313
[cljs-tooling "0.2.0"]]
1414

rebel-readline/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.1.4 Removed regex stack overflow for large strings
2+
3+
It is very confusing to get an error from the value printer, so this merits a release.
4+
5+
* https://github.com/bhauman/rebel-readline/issues/161
6+
17
# 0.1.3 Improved Completion and Faster startup
28

39
Rebel Readline loads 2x faster and Completion now narrows choices as you type.

rebel-readline/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.bhauman/rebel-readline "0.1.4-SNAPSHOT"
1+
(defproject com.bhauman/rebel-readline "0.1.4"
22
:description "Terminal readline library for Clojure dialects"
33
:url "https://github.com/bhauman/rebel-readline"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)