Skip to content

Commit

Permalink
Release 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Dec 16, 2021
1 parent 7711bce commit f62f331
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.18.2 - 2021-12-15

Prefer inspector to vega viewers d350374

Since implementing a correct and complete spec for vega/vega-lite is
difficult, the spec was loosened up. However, now data that is not vega
is being matched for the vega viewer. By preferring the inspector, the
vega spec can remain open while providing a more reasonable default for
most data.

## 0.18.1 - 2021-12-08

- Enable alt for multi-select a1dc433
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@ 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.18.1"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.18.2"}}}'
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.18.1"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.18.2"}
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.18.1"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.18.2"}
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.18.1"}}}'`
bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.18.2"}}}'`
```

or for examples on how to integrate portal into an existing project, look
Expand Down Expand Up @@ -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.18.1"}
{djblue/portal {:mvn/version "0.18.2"}
;; optional yaml support
clj-commons/clj-yaml {:mvn/version "0.7.0"}}}
```
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[pwa]
[version]))

(def version "0.18.1")
(def version "0.18.2")

(def ^:dynamic *cwd* nil)

Expand Down
4 changes: 2 additions & 2 deletions extension-intellij/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'djblue'
version '0.18.1'
version '0.18.2'

intellij {
version = '2021.3'
Expand All @@ -24,7 +24,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.18.1'
// implementation 'djblue:portal:0.18.2'
// implementation 'nrepl:nrepl:0.8.3'
}

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.18.1",
"version": "0.18.2",
"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.18.1",
"version": "0.18.2",
"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.18.1"])
"0.18.2"])
(.-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 @@ -196,7 +196,7 @@
(defn- get-options []
(merge
{:name "portal"
:version "0.18.1"
:version "0.18.2"
: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 @@ -4,7 +4,7 @@

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

0 comments on commit f62f331

Please sign in to comment.