Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Dec 12, 2020
1 parent 68edc6d commit 3a34e8e
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 8 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 0.7.0 - 2020-12-12

- Bump min babashka version from 0.2.2 to 0.2.4

### New

- Add YAML support (thanks [@yvendruscolo](https://github.com/yvendruscolo) [#27](https://github.com/djblue/portal/pull/27))
- Add a default viewer via the metadata key `:portal.viewer/default` (thanks [@JJ-Atkinson](https://github.com/JJ-Atkinson) [#24](https://github.com/djblue/portal/pull/24))
- Add more data manipulation commands
- type, deref, datafy, bean
- slurp for files, URL and URI
- first, rest, count
- get, get-in
- Update scrollbar style

### Fixed

- Prevent weird scrolling issue on osx
- Fix command palette css for safari
- Close portal on process shutdown for portal.main
- Find chrome binary from within wsl

### Changed

- Remove auto-datafy of objects pulled by portal
- You can now run datafy manually via the command palette.

## 0.6.4 - 2020-11-15

- Chunk seqs into groups of 100 for serialization
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.6.4
VERSION := 0.7.0

.PHONY: dev test

Expand Down
8 changes: 4 additions & 4 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.6.4"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.7.0"}}}'
```

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

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.6.4"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.7.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.6.4"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.7.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.6.4"}}}'`
bb -cp `clj -Spath -Sdeps '{:deps {djblue/portal {:mvn/version "0.7.0"}}}'`
```

or for examples on how to integrate portal into an existing project, look through the [examples](./examples) directory.
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.6.4</version>
<version>0.7.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.6.4</tag>
<tag>0.7.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.6.4"
version "0.7.0"
code-url "main.js"
platform #?(:bb "bb" :clj "jvm" :cljs "node")}}]
(str
Expand Down

0 comments on commit 3a34e8e

Please sign in to comment.