Skip to content

Commit c61b05f

Browse files
committed
Release 0.42.0
1 parent 5b88216 commit c61b05f

File tree

9 files changed

+27
-16
lines changed

9 files changed

+27
-16
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.42.0 - 2023-06-06
2+
3+
- Expose portal.ui.options to sci 5b88216
4+
- Add :launcher :auto for using installed extensions 1d3f91d
5+
- Allow any object to be invoked for rpc b5e422c
6+
- Add zenburn theme 0b6d901
7+
8+
### Bug Fixes
9+
10+
- Fix sci code loading in vs-code extension b5e422c
11+
112
## 0.41.0 - 2023-05-30
213

314
- Enable sci for calva notebooks 9cc28f1

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -37,49 +37,49 @@ Clojurians][london-clojurians].
3737
To start a repl with portal, run the **clojure >= 1.10.0** cli with:
3838

3939
```bash
40-
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}}}'
40+
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.42.0"}}}'
4141
```
4242

4343
or for a **web** **clojurescript >= 1.10.773** repl, do:
4444

4545
```bash
46-
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}
46+
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.42.0"}
4747
org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \
4848
-m cljs.main
4949
```
5050

5151
or for a **node** **clojurescript >= 1.10.773** repl, do:
5252

5353
```bash
54-
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}
54+
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.42.0"}
5555
org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \
5656
-m cljs.main -re node
5757
```
5858

5959
or for a **babashka >=0.2.4** repl, do:
6060

6161
```bash
62-
bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}}}'
62+
bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.42.0"}}}'
6363
```
6464

6565
or for a Leiningen project:
6666

6767
- Add Portal as a dependency, either to `:dev` profile or its own profile:
6868

6969
```clojure
70-
{:profiles {:dev {:dependencies [[djblue/portal "0.41.0"]]}}}
70+
{:profiles {:dev {:dependencies [[djblue/portal "0.42.0"]]}}}
7171
```
7272

7373
or
7474

7575
```clojure
76-
{:profiles {:portal {:dependencies [[djblue/portal "0.41.0"]]}}}
76+
{:profiles {:portal {:dependencies [[djblue/portal "0.42.0"]]}}}
7777
```
7878

7979
Or as a global profile, add to `~/.lein/profiles.clj`:
8080

8181
```clojure
82-
{:portal {:dependencies [[djblue/portal "0.41.0"]]}}
82+
{:portal {:dependencies [[djblue/portal "0.42.0"]]}}
8383
```
8484

8585
If you add Portal to a profile other than `:dev`, when starting a REPL
@@ -166,8 +166,8 @@ For more documentation, take a look through the [docs][docs].
166166

167167
[live-demo]: https://www.youtube.com/watch?v=Tj-iyDo3bq0
168168
[london-clojurians]: https://www.youtube.com/channel/UC-pYfofTyvVDMwM4ttfFGqw
169-
[docs]: https://cljdoc.org/d/djblue/portal/0.41.0/doc/ui-concepts
170-
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.41.0/doc/ui-concepts
169+
[docs]: https://cljdoc.org/d/djblue/portal/0.42.0/doc/ui-concepts
170+
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.42.0/doc/ui-concepts
171171

172172
[vs-code-docs]: ./doc/editors/vs-code.md
173173
[intellij-docs]: ./doc/editors/intellij.md

dev/tasks/info.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(:require [clojure.java.shell :refer [sh]]
33
[clojure.string :as str]))
44

5-
(def version "0.41.0")
5+
(def version "0.42.0")
66

77
(defn git-hash []
88
(str/trim (:out (sh "git" "rev-parse" "HEAD"))))

extension-intellij/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = djblue
55
pluginName = portal
6-
pluginVersion = 0.41.0
6+
pluginVersion = 0.42.0
77

88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.

extension-vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "portal",
3-
"version": "0.41.0",
3+
"version": "0.42.0",
44
"description": "A clojure tool to navigate through your data.",
55
"icon": "icon.png",
66
"main": "vs-code.js",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "portal",
3-
"version": "0.41.0",
3+
"version": "0.42.0",
44
"repository": "github:djblue/portal",
55
"dependencies": {
66
"@fortawesome/fontawesome-svg-core": "^1.2.36",

src/portal/extensions/vs_code.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
" - "
4646
["portal"
4747
(get options :window-title "vs-code")
48-
"0.41.0"])
48+
"0.42.0"])
4949
(view-column)
5050
(clj->js
5151
{:enableScripts true

src/portal/runtime.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
{:name (if (= :dev (:mode options))
209209
"portal-dev"
210210
"portal")
211-
:version "0.41.0"
211+
:version "0.42.0"
212212
:platform
213213
#?(:bb "bb"
214214
:clj "jvm"

src/portal/runtime/index.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(defn html [{:keys [name version host session-id code-url platform mode]
44
:or {name "portal"
5-
version "0.41.0"
5+
version "0.42.0"
66
code-url "main.js"
77
platform #?(:bb "bb" :clj "jvm" :cljs "node" :cljr "clr")}}]
88
(str

0 commit comments

Comments
 (0)