From c170118913c0be00986c575dd9a7b2c1b6457f5c Mon Sep 17 00:00:00 2001 From: Chris Badahdah Date: Wed, 16 Feb 2022 17:54:17 -0700 Subject: [PATCH] Release 0.21.2 --- CHANGELOG.md | 6 ++++++ README.md | 10 +++++----- dev/tasks/info.clj | 2 +- extension-intellij/build.gradle | 4 ++-- extension-vscode/package.json | 2 +- package.json | 2 +- src/portal/extensions/vs_code.cljs | 2 +- src/portal/runtime.cljc | 2 +- src/portal/runtime/index.cljc | 2 +- 9 files changed, 19 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2d8a059..0e6e673e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.21.2 - 2022-02-16 + +### Bug Fixes + +- Fix `p/eval-str` for production builds 01b881f + ## 0.21.1 - 2022-02-16 ### Bug Fixes diff --git a/README.md b/README.md index 29972236..25b8d49c 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,13 @@ To get an overview of portal, you can watch the following recording of a [live d To start a repl with portal, run the **clojure >= 1.10.0** cli with: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"}}}' +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.2"}}}' ``` or for a **web** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.2"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main ``` @@ -38,7 +38,7 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"} or for a **node** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.2"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main -re node ``` @@ -46,7 +46,7 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"} or for a **babashka >=0.2.4** repl, do: ```bash -bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"}}}'` +bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.2"}}}'` ``` or for examples on how to integrate portal into an existing project, look @@ -307,7 +307,7 @@ Add a portal alias in `~/.clojure/deps.edn` :portal/cli {:main-opts ["-m" "portal.main"] :extra-deps - {djblue/portal {:mvn/version "0.21.1"} + {djblue/portal {:mvn/version "0.21.2"} ;; optional yaml support clj-commons/clj-yaml {:mvn/version "0.7.0"}}} ``` diff --git a/dev/tasks/info.clj b/dev/tasks/info.clj index 27d3cf2d..f0aa6901 100644 --- a/dev/tasks/info.clj +++ b/dev/tasks/info.clj @@ -2,7 +2,7 @@ (:require [babashka.process :as p] [clojure.string :as str])) -(def version "0.21.1") +(def version "0.21.2") (defn git-hash [] (-> ["git" "rev-parse" "HEAD"] diff --git a/extension-intellij/build.gradle b/extension-intellij/build.gradle index d6a83c88..a50d4d8a 100644 --- a/extension-intellij/build.gradle +++ b/extension-intellij/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'djblue' -version '0.21.1' +version '0.21.2' intellij { version = '2021.3' @@ -28,7 +28,7 @@ dependencies { implementation 'http-kit:http-kit:2.5.3' // Include depdencies for dev // - devImplementation doesn't work for plugin development - // implementation 'djblue:portal:0.21.1' + // implementation 'djblue:portal:0.21.2' // implementation 'nrepl:nrepl:0.8.3' } diff --git a/extension-vscode/package.json b/extension-vscode/package.json index cce2e0c8..ecbe1f1b 100644 --- a/extension-vscode/package.json +++ b/extension-vscode/package.json @@ -1,6 +1,6 @@ { "name": "portal", - "version": "0.21.1", + "version": "0.21.2", "description": "A clojure tool to navigate through your data.", "icon": "icon.png", "main": "vs-code.js", diff --git a/package.json b/package.json index ad4d36ab..402140d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "portal", - "version": "0.21.1", + "version": "0.21.2", "repository": "github:djblue/portal", "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.36", diff --git a/src/portal/extensions/vs_code.cljs b/src/portal/extensions/vs_code.cljs index a3c41f89..fc290823 100644 --- a/src/portal/extensions/vs_code.cljs +++ b/src/portal/extensions/vs_code.cljs @@ -26,7 +26,7 @@ " - " ["portal" (get options :window-title "vs-code") - "0.21.1"]) + "0.21.2"]) (.-One vscode/ViewColumn) #js {:enableScripts true :retainContextWhenHidden true}) diff --git a/src/portal/runtime.cljc b/src/portal/runtime.cljc index 83ce123c..7842bef0 100644 --- a/src/portal/runtime.cljc +++ b/src/portal/runtime.cljc @@ -176,7 +176,7 @@ (defn- get-options [] (merge {:name "portal" - :version "0.21.1" + :version "0.21.2" :platform #?(:bb "bb" :clj "jvm" diff --git a/src/portal/runtime/index.cljc b/src/portal/runtime/index.cljc index 61e285c2..486c7764 100644 --- a/src/portal/runtime/index.cljc +++ b/src/portal/runtime/index.cljc @@ -4,7 +4,7 @@ (defn html [& {:keys [name version host session-id code-url platform] :or {name "portal" - version "0.21.1" + version "0.21.2" code-url "main.js" platform #?(:bb "bb" :clj "jvm" :cljs "node")}}] (str