Skip to content

Commit

Permalink
Release 0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Oct 15, 2022
1 parent ff344a2 commit 2b5eb66
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 13 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.32.0 - 2022-10-15

### New Features

- Allow users to await promises when using eval-str 4d612f4
- Default to nord-light based on system preferences 938dbfa
- First cut of nREPL repl middleware e32f38a
- Extend table viewer to seq of vectors dc9309c
- Adds `Shift + Enter` shortcut to clojure.datafy/datafy (#140) e98c4dc
- Thanks @pfeodrippe!

### Bug Fixes

- Add port to websocket connection url f12beba
- Thanks @hiredman!
- Improve relative selection for multi-table 7c28ce3

## 0.31.0 - 2022-10-04

### UX Tweaks
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@ Clojurians][london-clojurians].
To start a repl with portal, run the **clojure >= 1.10.0** cli with:

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.31.0"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.32.0"}}}'
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.31.0"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.32.0"}
org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \
-m cljs.main
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.31.0"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.32.0"}
org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \
-m cljs.main -re node
```

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

```bash
bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.31.0"}}}'`
bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.32.0"}}}'`
```

or for examples on how to integrate portal into an existing project, look
Expand Down Expand Up @@ -133,8 +133,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.31.0/doc/ui-concepts
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.31.0/doc/ui-concepts
[docs]: https://cljdoc.org/d/djblue/portal/0.32.0/doc/ui-concepts
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.32.0/doc/ui-concepts

[vs-code-docs]: ./doc/editors/vs-code.md
[intellij-docs]: ./doc/editors/intellij.md
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/info.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:require [clojure.java.shell :refer [sh]]
[clojure.string :as str]))

(def version "0.31.0")
(def version "0.32.0")

(defn git-hash []
(str/trim (:out (sh "git" "rev-parse" "HEAD"))))
Expand Down
2 changes: 1 addition & 1 deletion extension-intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = djblue
pluginName = portal
pluginVersion = 0.31.0
pluginVersion = 0.32.0

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
2 changes: 1 addition & 1 deletion extension-vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "portal",
"version": "0.31.0",
"version": "0.32.0",
"description": "A clojure tool to navigate through your data.",
"icon": "icon.png",
"main": "vs-code.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "portal",
"version": "0.31.0",
"version": "0.32.0",
"repository": "github:djblue/portal",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
Expand Down
2 changes: 1 addition & 1 deletion src/portal/extensions/vs_code.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
" - "
["portal"
(get options :window-title "vs-code")
"0.31.0"])
"0.32.0"])
(.-One vscode/ViewColumn)
#js {:enableScripts true
:retainContextWhenHidden true})
Expand Down
2 changes: 1 addition & 1 deletion src/portal/runtime.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
{:name (if (= :dev (:mode options))
"portal-dev"
"portal")
:version "0.31.0"
:version "0.32.0"
:platform
#?(:bb "bb"
:clj "jvm"
Expand Down
2 changes: 1 addition & 1 deletion src/portal/runtime/index.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(defn html [{:keys [name version host session-id code-url platform mode]
:or {name "portal"
version "0.31.0"
version "0.32.0"
code-url "main.js"
platform #?(:bb "bb" :clj "jvm" :cljs "node")}}]
(str
Expand Down

0 comments on commit 2b5eb66

Please sign in to comment.