diff --git a/examples/lein/project.clj b/examples/lein/project.clj index 1e77268..ea57f5d 100644 --- a/examples/lein/project.clj +++ b/examples/lein/project.clj @@ -6,7 +6,7 @@ :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.764"] [org.clojure/core.async "1.2.603"] - [binaryage/devtools "1.0.0"] + [binaryage/devtools "1.0.1"] [binaryage/dirac "RELEASE"] [com.cognitect/transit-clj "1.0.324"] [cljs-http "0.1.46"] diff --git a/project.clj b/project.clj index 7f8e278..92ef402 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ (def clojurescript-version (or (System/getenv "CANARY_CLOJURESCRIPT_VERSION") "1.10.764")) -(defproject binaryage/devtools "1.0.0" +(defproject binaryage/devtools "1.0.1" :description "A collection of Chrome DevTools enhancements for ClojureScript developers." :url "https://github.com/binaryage/cljs-devtools" :license {:name "MIT License" diff --git a/src/lib/devtools/version.clj b/src/lib/devtools/version.clj index 45ac190..a0e085e 100644 --- a/src/lib/devtools/version.clj +++ b/src/lib/devtools/version.clj @@ -1,6 +1,6 @@ (ns devtools.version) -(def current-version "1.0.0") ; this should match our project.clj +(def current-version "1.0.1") ; this should match our project.clj (defmacro get-current-version [] current-version)