From 38267d91755f1b89b32e0497ccf32e50e3e6f9bd Mon Sep 17 00:00:00 2001 From: Mike Fikes Date: Thu, 19 May 2016 23:55:40 -0400 Subject: [PATCH] 1.1.1 --- project.clj | 2 +- src/tubular/core.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 37b7a81..ad95b74 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject tubular "1.1.0" +(defproject tubular "1.1.1" :description "Clojure Socket REPL client" :url "https://github.com/mfikes/tubular" :license {:name "Eclipse Public License" diff --git a/src/tubular/core.clj b/src/tubular/core.clj index 1ca7009..9ec82a7 100644 --- a/src/tubular/core.clj +++ b/src/tubular/core.clj @@ -15,7 +15,7 @@ (while @running (let [line (read-line)] (write-line socket line) - (when (= line ":rep/quit") + (when (= line ":repl/quit") (reset! running false))))) (defn connect