Skip to content

Commit

Permalink
release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Jun 26, 2018
1 parent 8a40903 commit 9486d3a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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"]}}
}
```
Expand All @@ -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
Expand All @@ -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"]]}
}
```

Expand Down
4 changes: 2 additions & 2 deletions rebel-readline-cljs/project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"]]

Expand Down
6 changes: 6 additions & 0 deletions rebel-readline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion rebel-readline/project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 9486d3a

Please sign in to comment.