diff --git a/examples/lein/project.clj b/examples/lein/project.clj index 3aadd3e..30caf19 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.520"] [org.clojure/core.async "0.4.500"] - [binaryage/devtools "0.9.10"] + [binaryage/devtools "0.9.11"] [binaryage/dirac "RELEASE"] [com.cognitect/transit-clj "0.8.319"] [cljs-http "0.1.46"] diff --git a/project.clj b/project.clj index 8ac4313..56f97e1 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ (def clojurescript-version (or (System/getenv "CANARY_CLOJURESCRIPT_VERSION") "1.10.520")) -(defproject binaryage/devtools "0.9.10" +(defproject binaryage/devtools "0.9.11" :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 2578240..fb19f4f 100644 --- a/src/lib/devtools/version.clj +++ b/src/lib/devtools/version.clj @@ -1,6 +1,6 @@ (ns devtools.version) -(def current-version "0.9.10") ; this should match our project.clj +(def current-version "0.9.11") ; this should match our project.clj (defmacro get-current-version [] current-version)