diff --git a/CHANGELOG.md b/CHANGELOG.md index def2551d..3983634a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.58.2 - 2024-10-24 + +### Bug Fixes + +- Improve command palette css 70ba219 +- Revert "Process each rpc request independently" df2f03d + ## 0.58.1 - 2024-10-21 - Attempt to sort sub-command windows in Portal UI (#243) diff --git a/README.md b/README.md index 7f4a1ab1..38595169 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,13 @@ More video presentations on Portal can be found [here](./doc/videos.md). To start a repl with portal, run the **clojure >= 1.10.0** cli with: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"}}}' +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.2"}}}' ``` or for a **web** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.2"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main ``` @@ -55,7 +55,7 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"} or for a **node** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.2"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main -re node ``` @@ -63,19 +63,19 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"} or for a **babashka >=0.2.4** repl, do: ```bash -bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.1"}}}' +bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.58.2"}}}' ``` or for a lein `project.clj`, add: ```clojure -{:profiles {:dev {:dependencies [[djblue/portal "0.58.1"]]}}} +{:profiles {:dev {:dependencies [[djblue/portal "0.58.2"]]}}} ``` or as a global profile, add to `~/.lein/profiles.clj`: ```clojure -{:portal {:dependencies [[djblue/portal "0.58.1"]]}} +{:portal {:dependencies [[djblue/portal "0.58.2"]]}} ``` > [!NOTE] @@ -163,8 +163,8 @@ For more documentation, take a look through the [docs][docs]. [live-demo]: https://www.youtube.com/watch?v=Tj-iyDo3bq0 [london-clojurians]: https://www.youtube.com/channel/UC-pYfofTyvVDMwM4ttfFGqw -[docs]: https://cljdoc.org/d/djblue/portal/0.58.1/doc/ui-concepts -[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.58.1/doc/ui-concepts +[docs]: https://cljdoc.org/d/djblue/portal/0.58.2/doc/ui-concepts +[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.58.2/doc/ui-concepts [vs-code-docs]: ./doc/editors/vs-code.md [intellij-docs]: ./doc/editors/intellij.md diff --git a/dev/tasks/info.clj b/dev/tasks/info.clj index 298e529d..4e983f58 100644 --- a/dev/tasks/info.clj +++ b/dev/tasks/info.clj @@ -2,7 +2,7 @@ (:require [clojure.java.shell :refer [sh]] [clojure.string :as str])) -(def version "0.58.1") +(def version "0.58.2") (defn git-hash [] (str/trim (:out (sh "git" "rev-parse" "HEAD")))) diff --git a/extension-intellij/gradle.properties b/extension-intellij/gradle.properties index e3a03d62..f7d422d5 100644 --- a/extension-intellij/gradle.properties +++ b/extension-intellij/gradle.properties @@ -3,7 +3,7 @@ pluginGroup = djblue pluginName = portal -pluginVersion = 0.58.1 +pluginVersion = 0.58.2 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. diff --git a/extension-vscode/package.json b/extension-vscode/package.json index 7d82aab2..faeb73a2 100644 --- a/extension-vscode/package.json +++ b/extension-vscode/package.json @@ -1,6 +1,6 @@ { "name": "portal", - "version": "0.58.1", + "version": "0.58.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 9ccd7ec0..afa0b6de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@djblue/portal", - "version": "0.58.1", + "version": "0.58.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 0e190914..8533dd4b 100644 --- a/src/portal/extensions/vs_code.cljs +++ b/src/portal/extensions/vs_code.cljs @@ -46,7 +46,7 @@ " - " ["portal" (get options :window-title "vs-code") - "0.58.1"]) + "0.58.2"]) (view-column) (clj->js {:enableScripts true diff --git a/src/portal/runtime.cljc b/src/portal/runtime.cljc index 082c412f..a1e76d85 100644 --- a/src/portal/runtime.cljc +++ b/src/portal/runtime.cljc @@ -366,7 +366,7 @@ {:name (if (= :dev (:mode options)) "portal-dev" "portal") - :version "0.58.1" + :version "0.58.2" :runtime (runtime) :platform #?(:bb "bb" diff --git a/src/portal/runtime/index.cljc b/src/portal/runtime/index.cljc index 3bb9c7b8..a2a449b2 100644 --- a/src/portal/runtime/index.cljc +++ b/src/portal/runtime/index.cljc @@ -2,7 +2,7 @@ (defn html [{:keys [name version host port session-id code-url platform mode] :or {name "portal" - version "0.58.1" + version "0.58.2" code-url "main.js" platform #?(:bb "bb" :clj "jvm" :cljs "node" :cljr "clr")}}] (str