Skip to content

Commit

Permalink
Release 0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed May 31, 2023
1 parent 878eba1 commit 30bcac8
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 16 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 0.41.0 - 2023-05-30

- Enable sci for calva notebooks 9cc28f1
- Improve reagent sci bindings 26188ae
- Improve word highlighting 6f58917
- Add clear-filter command to search bar 6ddb05e
- Call goto on link click for log viewer d6e24fc
- Add `portal.api/stop` 49a7923

### Bug Fixes

- Fix CLR reflection warnings 0e2134b
- Only focus value if window is focused a86fb81

## 0.40.0 - 2023-04-18

- Allow vscode extension to be used remotely
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,49 +37,49 @@ 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.40.0"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}}}'
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.40.0"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.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.40.0"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.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 -Sdeps '{:deps {djblue/portal {:mvn/version "0.40.0"}}}'
bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.41.0"}}}'
```

or for a Leiningen project:

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

```clojure
{:profiles {:dev {:dependencies [[djblue/portal "0.40.0"]]}}}
{:profiles {:dev {:dependencies [[djblue/portal "0.41.0"]]}}}
```

or

```clojure
{:profiles {:portal {:dependencies [[djblue/portal "0.40.0"]]}}}
{:profiles {:portal {:dependencies [[djblue/portal "0.41.0"]]}}}
```

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

```clojure
{:portal {:dependencies [[djblue/portal "0.40.0"]]}}
{:portal {:dependencies [[djblue/portal "0.41.0"]]}}
```

If you add Portal to a profile other than `:dev`, when starting a REPL
Expand Down Expand Up @@ -166,8 +166,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.40.0/doc/ui-concepts
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.40.0/doc/ui-concepts
[docs]: https://cljdoc.org/d/djblue/portal/0.41.0/doc/ui-concepts
[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.41.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.40.0")
(def version "0.41.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.40.0
pluginVersion = 0.41.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.40.0",
"version": "0.41.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.40.0",
"version": "0.41.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 @@ -45,7 +45,7 @@
" - "
["portal"
(get options :window-title "vs-code")
"0.40.0"])
"0.41.0"])
(view-column)
(clj->js
{:enableScripts 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 @@ -208,7 +208,7 @@
{:name (if (= :dev (:mode options))
"portal-dev"
"portal")
:version "0.40.0"
:version "0.41.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.40.0"
version "0.41.0"
code-url "main.js"
platform #?(:bb "bb" :clj "jvm" :cljs "node" :cljr "clr")}}]
(str
Expand Down

0 comments on commit 30bcac8

Please sign in to comment.