From cbc6536bbd5768494dba8d86380e758dceba1481 Mon Sep 17 00:00:00 2001 From: Bruce Hauman Date: Wed, 28 Feb 2018 11:36:36 -0500 Subject: [PATCH] prepare first release --- rebel-readline-cljs/project.clj | 4 ++-- rebel-readline/project.clj | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/rebel-readline-cljs/project.clj b/rebel-readline-cljs/project.clj index eecd7cf..0b4dd66 100644 --- a/rebel-readline-cljs/project.clj +++ b/rebel-readline-cljs/project.clj @@ -1,4 +1,4 @@ -(defproject rebel-readline-cljs "0.1.1-SNAPSHOT" +(defproject com.bhauman/rebel-readline-cljs "0.1.1" :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 [[rebel-readline "0.1.1-SNAPSHOT"] + :dependencies [[com.bhauman/rebel-readline "0.1.1"] [org.clojure/clojurescript "1.9.946"] [cljs-tooling "0.2.0"]] diff --git a/rebel-readline/project.clj b/rebel-readline/project.clj index 174fa34..8c415a5 100644 --- a/rebel-readline/project.clj +++ b/rebel-readline/project.clj @@ -1,4 +1,4 @@ -(defproject rebel-readline "0.1.1-SNAPSHOT" +(defproject com.bhauman/rebel-readline "0.1.1" :description "Terminal readline library for Clojure dialects" :url "https://github.com/bhauman/rebel-readline" :license {:name "Eclipse Public License" @@ -9,13 +9,12 @@ :url "https://github.com/bhauman/rebel-readline" :dir ".."} - :dependencies [[org.clojure/clojure "1.9.0"] + :dependencies [[org.clojure/clojure "1.8.0"] [org.jline/jline-reader "3.5.1"] [org.jline/jline-terminal "3.5.1"] - #_[org.jline/jline-terminal-jna "3.5.1"] [org.jline/jline-terminal-jansi "3.5.1"] - [cljfmt "0.5.7"] ;; depends on tools reader - [compliment "0.3.5"]] + [cljfmt "0.5.7"] ;; depends on tools reader + [compliment "0.3.6"]] :profiles {:dev {:source-paths ["src" "dev"] :main rebel-dev.main}})