Release 0.5.0 (#895)

* Update Kino version

* Bump version
This commit is contained in:
Jonatan Kłosko 2022-01-19 19:58:54 +01:00 committed by GitHub
parent 5c1c61d0f2
commit 81c9871802
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 9 additions and 9 deletions

View file

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased](https://github.com/livebook-dev/livebook)
## [v0.5.0](https://github.com/livebook-dev/livebook/tree/v0.5.0) (2022-01-19)
This release comes with a number of exciting features, in particular it adds
support for extending Livebook with custom-built widgets via `Kino.JS`. It also

View file

@ -55,7 +55,7 @@ instance, otherwise the command below will fail.
```elixir
Mix.install([
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -15,7 +15,7 @@ Let's install them:
```elixir
Mix.install([
{:vega_lite, "~> 0.1.2"},
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -8,7 +8,7 @@ install it and get started:
```elixir
Mix.install([
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -13,7 +13,7 @@ First, let's install `kino`:
```elixir
Mix.install([
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -10,7 +10,7 @@ and interact with them. Let's install it:
```elixir
Mix.install([
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -13,7 +13,7 @@ Let's get started and install `kino`:
```elixir
Mix.install([
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -14,7 +14,7 @@ Let's add `:vega_lite` and `:kino` as dependencies:
```elixir
Mix.install([
{:vega_lite, "~> 0.1.2"},
{:kino, github: "livebook-dev/kino"}
{:kino, "~> 0.5.0"}
])
```

View file

@ -1,7 +1,7 @@
defmodule Livebook.MixProject do
use Mix.Project
@version "0.4.1"
@version "0.5.0"
@description "Interactive and collaborative code notebooks - made with Phoenix LiveView"
def project do