Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Jan 23, 2021
1 parent 334a8df commit ce314a3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.9.0 - 2021-01-22

- PWA startup for linux with >1 chrome profile (thanks [@brdloush](https://github.com/brdloush) [#41](https://github.com/djblue/portal/pull/41))
- Adds portal.api/submit target function for add-tap and remove-tap. (thanks [@coyotesqrl](https://github.com/coyotesqrl) [#39](https://github.com/djblue/portal/pull/39))
- Now users can `(clojure.core/remove-tap #'portal.api/submit)` to stop sending `tap>` values to portal.
- jvm.launcher: use system prop for path separator (thanks [@bennyandresen](https://github.com/bennyandresen) [#34](https://github.com/djblue/portal/pull/34))
- fallback to previous value ":"
- This improves Windows support. Unix uses ":" and Windows uses ";"

## 0.8.0 - 2021-01-06

- Support portal parameter in portal.api/open (thanks [@rfhayashi](https://github.com/rfhayashi) [#32](https://github.com/djblue/portal/pull/32))
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export BABASHKA_CLASSPATH := $(shell clojure -A:test -Spath)
export PATH := $(PWD)/target:$(PATH)
SHELL := bash
VERSION := 0.8.0
VERSION := 0.9.0

.PHONY: dev test

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,29 @@ To get an overview of portal, you can watch the following recording of a live de
To start a repl with portal, run the clojure cli with:

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

or for a **web** clojurescript repl, do:

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

or for a **node** clojurescript repl, do:

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

or for a [**babashka**](https://github.com/borkdude/babashka) [>=0.2.4](https://github.com/borkdude/babashka/blob/master/CHANGELOG.md#v024) repl, do:

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

or for examples on how to integrate portal into an existing project, look through the [examples](./examples) directory.
Expand Down Expand Up @@ -166,7 +166,7 @@ Add a portal alias in `~/.clojure/deps.edn`
:portal/cli
{:main-opts ["-m" "portal.main"]
:extra-deps
{djblue/portal {:mvn/version "0.8.0"}
{djblue/portal {:mvn/version "0.9.0"}
;; optional json support
cheshire/cheshire {:mvn/version "5.10.0"}
;; optional yaml support
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>djblue</groupId>
<artifactId>portal</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<name>portal</name>
<description>A clojure tool to navigate through your data.</description>
<url>https://github.com/djblue/portal</url>
Expand All @@ -15,7 +15,7 @@
</licenses>
<scm>
<url>https://github.com/djblue/portal</url>
<tag>0.8.0</tag>
<tag>0.9.0</tag>
</scm>
<dependencies>
<dependency>
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 code-url platform]
:or {name "portal"
version "0.8.0"
version "0.9.0"
code-url "main.js"
platform #?(:bb "bb" :clj "jvm" :cljs "node")}}]
(str
Expand Down

0 comments on commit ce314a3

Please sign in to comment.