From b53e11734ec81b88657ded22fa091c6ec54907ab Mon Sep 17 00:00:00 2001 From: Bruce Hauman Date: Tue, 21 Jul 2020 08:53:10 -0600 Subject: [PATCH] release 0.2.11 --- CHANGES.md | 2 ++ README.md | 10 +++++----- deps.edn | 4 ++-- docs/README.md | 10 +++++----- docs/assets/compiled/js/main.js | 6 +++--- docs/config-options.md | 2 +- docs/docs/classpaths.md | 6 +++--- docs/docs/code_splitting.md | 2 +- docs/docs/create_a_build.md | 4 ++-- docs/docs/emacs.md | 2 +- docs/docs/installation.md | 6 +++--- docs/docs/jetty_conflicts.md | 2 +- docs/docs/react-native.md | 2 +- docs/docs/vim.md | 4 ++-- docs/tutorial.md | 8 ++++---- helper-content/creating_a_build_cli_tools.md | 2 +- helper-content/creating_a_build_lein.md | 2 +- helper-resources/public/com/bhauman/figwheel/helper.js | 6 +++--- .../helper/content/creating_a_build_cli_tools.html | 2 +- .../figwheel/helper/content/creating_a_build_lein.html | 2 +- project.clj | 6 +++--- 21 files changed, 46 insertions(+), 44 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1fb4915..6c2a999 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,5 @@ +# 0.2.11 Small fix to for React Native support + # 0.2.10 React Native support and SSL certificate generation New React Native support which includes support for React Native CLI diff --git a/README.md b/README.md index e544336..0a40223 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ On Mac OSX with brew: Now launch a ClojureScript REPL with: ``` -clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.10\"}}}}" -m figwheel.main +clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.11\"}}}}" -m figwheel.main ``` This will first compile browser REPL code to a temp directory, and @@ -224,7 +224,7 @@ available. So, you can get Rebel Readline behavior by simply adding it to your dependencies. ``` -clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.10\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main +clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.11\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main ``` As of right now using Rebel readline does create some startup overhead @@ -245,7 +245,7 @@ directory of your project. Ensure your `deps.edn` file has the `figwheel.main` dependencies: ```clojure -{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.10"} +{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.11"} com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}} ;; setup some development paths :paths ["src" "target" "resources"] @@ -311,7 +311,7 @@ directory of your project. Ensure your `project.clj` file has `figwheel.main` dependencies: ```clojure -:dependencies [[com.bhauman/figwheel-main "0.2.10"] +:dependencies [[com.bhauman/figwheel-main "0.2.11"] [com.bhauman/rebel-readline-cljs "0.1.4"]] ;; setup target as a resource path :resource-paths ["target" "resources"] @@ -449,7 +449,7 @@ ClojureScript searches for source files on the Classpath. When you add a `re-frame` dependency like so: ```clojure -{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.10"} +{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.11"} com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"} ;; adding re-frame re-frame {:mvn/version "1.10.5"}} diff --git a/deps.edn b/deps.edn index 479b0e0..f676a8e 100644 --- a/deps.edn +++ b/deps.edn @@ -4,8 +4,8 @@ ;; DEV for now its easier to use cider with top level deps ;; com.bhauman/figwheel-core {:local/root "/Users/bhauman/workspace/figwheel/figwheel-core"} ;; com.bhauman/figwheel-repl {:local/root "/Users/bhauman/workspace/figwheel/figwheel-repl"} - com.bhauman/figwheel-repl {:mvn/version "0.2.11-SNAPSHOT"} - com.bhauman/figwheel-core {:mvn/version "0.2.11-SNAPSHOT"} + com.bhauman/figwheel-repl {:mvn/version "0.2.11"} + com.bhauman/figwheel-core {:mvn/version "0.2.11"} ;; server ring {:mvn/version "1.8.1"} diff --git a/docs/README.md b/docs/README.md index e544336..0a40223 100644 --- a/docs/README.md +++ b/docs/README.md @@ -200,7 +200,7 @@ On Mac OSX with brew: Now launch a ClojureScript REPL with: ``` -clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.10\"}}}}" -m figwheel.main +clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.11\"}}}}" -m figwheel.main ``` This will first compile browser REPL code to a temp directory, and @@ -224,7 +224,7 @@ available. So, you can get Rebel Readline behavior by simply adding it to your dependencies. ``` -clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.10\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main +clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.11\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main ``` As of right now using Rebel readline does create some startup overhead @@ -245,7 +245,7 @@ directory of your project. Ensure your `deps.edn` file has the `figwheel.main` dependencies: ```clojure -{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.10"} +{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.11"} com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}} ;; setup some development paths :paths ["src" "target" "resources"] @@ -311,7 +311,7 @@ directory of your project. Ensure your `project.clj` file has `figwheel.main` dependencies: ```clojure -:dependencies [[com.bhauman/figwheel-main "0.2.10"] +:dependencies [[com.bhauman/figwheel-main "0.2.11"] [com.bhauman/rebel-readline-cljs "0.1.4"]] ;; setup target as a resource path :resource-paths ["target" "resources"] @@ -449,7 +449,7 @@ ClojureScript searches for source files on the Classpath. When you add a `re-frame` dependency like so: ```clojure -{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.10"} +{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.11"} com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"} ;; adding re-frame re-frame {:mvn/version "1.10.5"}} diff --git a/docs/assets/compiled/js/main.js b/docs/assets/compiled/js/main.js index 9efa9db..97c815f 100644 --- a/docs/assets/compiled/js/main.js +++ b/docs/assets/compiled/js/main.js @@ -146,8 +146,8 @@ H(p);var q=M(p);if(null==q)return a.Y?a.Y(b,c,d,e,g,f,k,l,m,n):a.call(a,b,c,d,e, l,m,n,p,q,r,t);u=H(v);var x=M(v);if(null==x)return a.ca?a.ca(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u);v=H(x);var A=M(x);if(null==A)return a.da?a.da(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v);x=H(A);var G=M(A);if(null==G)return a.ea?a.ea(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x);A=H(G);var R=M(G);if(null==R)return a.fa?a.fa(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v, x,A);G=H(R);var ja=M(R);if(null==ja)return a.ga?a.ga(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A,G):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A,G);R=H(ja);ja=M(ja);if(null==ja)return a.ha?a.ha(b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A,G,R):a.call(a,b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A,G,R);b=[b,c,d,e,g,f,k,l,m,n,p,q,r,t,u,v,x,A,G,R];for(c=ja;;)if(c)b.push(H(c)),c=M(c);else break;return a.apply(a,b)} function xf(a,b){if(a.V){var c=a.S,d=pf(c+1,b);return d<=c?sf(a,d,b):a.V(b)}b=K(b);return null==b?a.A?a.A():a.call(a):tf(a,H(b),M(b))}function yf(a,b,c){return kc.V?(a=Ce(a,Ce(b,c)),b=kc.S,c=2+pf(b-1,c),c<=b?sf(kc,c,a):kc.V(a)):uf(kc,a,b,K(c))}function Me(a,b,c,d,e,f){return a.V?(f=qf(f),b=Ce(b,Ce(c,Ce(d,Ce(e,f)))),c=a.S,f=4+pf(c-3,f),f<=c?sf(a,f,b):a.V(b)):wf(a,b,c,d,e,qf(f))} -function zf(){if("undefined"===typeof Kc||"undefined"===typeof Lc||"undefined"===typeof Mc)Mc=function(a){this.Ac=a;this.i=393216;this.v=0},Mc.prototype.R=function(a,b){return new Mc(b)},Mc.prototype.M=function(){return this.Ac},Mc.prototype.ua=function(){return!1},Mc.prototype.next=function(){return Error("No such element")},Mc.prototype.remove=function(){return Error("Unsupported operation")},Mc.Tc=function(){return new Af(null,1,5,Bf,[Cf],null)},Mc.Tb=!0,Mc.tb="cljs.core/t_cljs$core10346",Mc.vc= -function(a){return xd(a,"cljs.core/t_cljs$core10346")};return new Mc(Df)}function Ef(a,b){for(;;){if(null==K(b))return!0;var c=L(b);c=a.a?a.a(c):a.call(null,c);if(B(c))b=M(b);else return!1}}function Ff(a){this.state=a;this.ac=this.Hc=this.o=null;this.v=16386;this.i=6455296}h=Ff.prototype;h.equiv=function(a){return this.s(null,a)};h.s=function(a,b){return this===b};h.Eb=function(){return this.state};h.M=function(){return this.o}; +function zf(){if("undefined"===typeof Kc||"undefined"===typeof Lc||"undefined"===typeof Mc)Mc=function(a){this.Ac=a;this.i=393216;this.v=0},Mc.prototype.R=function(a,b){return new Mc(b)},Mc.prototype.M=function(){return this.Ac},Mc.prototype.ua=function(){return!1},Mc.prototype.next=function(){return Error("No such element")},Mc.prototype.remove=function(){return Error("Unsupported operation")},Mc.Tc=function(){return new Af(null,1,5,Bf,[Cf],null)},Mc.Tb=!0,Mc.tb="cljs.core/t_cljs$core10344",Mc.vc= +function(a){return xd(a,"cljs.core/t_cljs$core10344")};return new Mc(Df)}function Ef(a,b){for(;;){if(null==K(b))return!0;var c=L(b);c=a.a?a.a(c):a.call(null,c);if(B(c))b=M(b);else return!1}}function Ff(a){this.state=a;this.ac=this.Hc=this.o=null;this.v=16386;this.i=6455296}h=Ff.prototype;h.equiv=function(a){return this.s(null,a)};h.s=function(a,b){return this===b};h.Eb=function(){return this.state};h.M=function(){return this.o}; h.Rb=function(a,b,c){a=K(this.ac);for(var d=null,e=0,f=0;;)if(fdeps.edn

If don’t have a deps.edn file let’s create one now:

-
{:deps  {com.bhauman/figwheel-main {:mvn/version "0.2.10"}
+  
{:deps  {com.bhauman/figwheel-main {:mvn/version "0.2.11"}
          ;; add rebel-readline for advanced REPL readline editing
          com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
  :paths ["src" "target" "resources"]}
diff --git a/helper-resources/public/com/bhauman/figwheel/helper/content/creating_a_build_lein.html b/helper-resources/public/com/bhauman/figwheel/helper/content/creating_a_build_lein.html
index 6b0e18f..c6b7afd 100644
--- a/helper-resources/public/com/bhauman/figwheel/helper/content/creating_a_build_lein.html
+++ b/helper-resources/public/com/bhauman/figwheel/helper/content/creating_a_build_lein.html
@@ -22,7 +22,7 @@ 

project.clj

(defproject lein-main "0.1.0-SNAPSHOT"
   :profiles {:dev {:dependencies
-                   [[com.bhauman/figwheel-main "0.2.10"]
+                   [[com.bhauman/figwheel-main "0.2.11"]
                     [com.bhauman/rebel-readline-cljs "0.1.4"]]}}
   :aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]})
 
diff --git a/project.clj b/project.clj index 27467cb..6426c33 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.bhauman/figwheel-main "0.2.11-SNAPSHOT" +(defproject com.bhauman/figwheel-main "0.2.11" :description "Figwheel Main - Clojurescript tooling." :url "https://github.com/bhauman/figwheel-main" :license {:name "Eclipse Public License - v 1.0" @@ -8,8 +8,8 @@ :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/clojurescript "1.10.773" :exclusions [commons-codec]] - [com.bhauman/figwheel-repl "0.2.11-SNAPSHOT"] - [com.bhauman/figwheel-core "0.2.11-SNAPSHOT"] + [com.bhauman/figwheel-repl "0.2.11"] + [com.bhauman/figwheel-core "0.2.11"] [com.bhauman/spell-spec "0.1.1"] [com.bhauman/cljs-test-display "0.1.1"] [com.bhauman/certifiable "0.0.7"]