Skip to content

Commit 744406d

Browse files
committed
Release v0.9.1
1 parent 5592587 commit 744406d

File tree

7 files changed

+30
-6
lines changed

7 files changed

+30
-6
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [v0.9.1](https://github.com/livebook-dev/livebook/tree/v0.9.1) (2023-04-06)
8+
9+
### Added
10+
11+
- Support for clients-only outputs ([#1810](https://github.com/livebook-dev/livebook/pull/1810))
12+
- Option to unstar notebooks directly from cards ([#1818](https://github.com/livebook-dev/livebook/pull/1818))
13+
- Option to hide notebooks from recent list ([#1830](https://github.com/livebook-dev/livebook/pull/1830))
14+
- Purging cookies once they exceed 24kB ([#1833](https://github.com/livebook-dev/livebook/pull/1833))
15+
- Preview for booting apps on the auth screen ([#1836](https://github.com/livebook-dev/livebook/pull/1836))
16+
17+
### Changed
18+
19+
- Moved "Livebook" to the end of page title ([#1828](https://github.com/livebook-dev/livebook/pull/1828))
20+
21+
### Fixed
22+
23+
- Image and audio inputs to update preview on change for other users ([#1807](https://github.com/livebook-dev/livebook/pull/1807))
24+
- Notebooks on Kino and on MapLibre ([#1806](https://github.com/livebook-dev/livebook/pull/1806), [#1811](https://github.com/livebook-dev/livebook/pull/1811))
25+
- Booting if apps path is unavailable ([#1812](https://github.com/livebook-dev/livebook/pull/1812))
26+
- Rendering of error pages
27+
- (Desktop) Fixed app URLs ([#1835](https://github.com/livebook-dev/livebook/pull/1835))
28+
- Respect whitespace in plain text output ([#1841](https://github.com/livebook-dev/livebook/pull/1841))
29+
- (Desktop) Fixed displaying error dialog and logging errors ([#1848](https://github.com/livebook-dev/livebook/pull/1848))
30+
731
## [v0.9.0](https://github.com/livebook-dev/livebook/tree/v0.9.0) (2023-03-20)
832

933
We migrated Docker images from Docker Hub to GitHub Container Registry (see [#1792](https://github.com/livebook-dev/livebook/pull/1792)). Make sure to upgrade image references from `livebook/livebook` to `ghcr.io/livebook-dev/livebook`.

lib/livebook/notebook/learn/deploy_apps.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:kino, "~> 0.9.0"}
5+
{:kino, "~> 0.9.1"}
66
])
77
```
88

lib/livebook/notebook/learn/kino/custom_kinos.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:kino, "~> 0.9.0"}
5+
{:kino, "~> 0.9.1"}
66
])
77
```
88

lib/livebook/notebook/learn/kino/intro_to_kino.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:kino, "~> 0.9.0"}
5+
{:kino, "~> 0.9.1"}
66
])
77
```
88

lib/livebook/notebook/learn/kino/smart_cells.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:kino, "~> 0.9.0"},
5+
{:kino, "~> 0.9.1"},
66
{:jason, "~> 1.4"}
77
])
88
```

lib/livebook/notebook/learn/kino/vm_introspection.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:kino, "~> 0.9.0"},
5+
{:kino, "~> 0.9.1"},
66
{:kino_vega_lite, "~> 0.1.7"}
77
])
88
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Livebook.MixProject do
22
use Mix.Project
33

44
@elixir_requirement "~> 1.14.2 or ~> 1.15-dev"
5-
@version "0.9.0"
5+
@version "0.9.1"
66
@description "Automate code & data workflows with interactive notebooks"
77

88
@app_elixir_version "1.14.2"

0 commit comments

Comments
 (0)