Skip to content

Commit

Permalink
Release 0.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Feb 17, 2022
1 parent 01b881f commit c170118
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.2 - 2022-02-16

### Bug Fixes

- Fix `p/eval-str` for production builds 01b881f

## 0.21.1 - 2022-02-16

### Bug Fixes
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.21.1"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.2"}}}'
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.1"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.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.21.1"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.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.21.1"}}}'`
bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.21.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.21.1"}
{djblue/portal {:mvn/version "0.21.2"}
;; optional yaml support
clj-commons/clj-yaml {:mvn/version "0.7.0"}}}
```
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 [babashka.process :as p]
[clojure.string :as str]))

(def version "0.21.1")
(def version "0.21.2")

(defn git-hash []
(-> ["git" "rev-parse" "HEAD"]
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.21.1'
version '0.21.2'

intellij {
version = '2021.3'
Expand All @@ -28,7 +28,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.21.1'
// implementation 'djblue:portal:0.21.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.21.1",
"version": "0.21.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.21.1",
"version": "0.21.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.21.1"])
"0.21.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 @@ -176,7 +176,7 @@
(defn- get-options []
(merge
{:name "portal"
:version "0.21.1"
:version "0.21.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.21.1"
version "0.21.2"
code-url "main.js"
platform #?(:bb "bb" :clj "jvm" :cljs "node")}}]
(str
Expand Down

0 comments on commit c170118

Please sign in to comment.