Bump Kino version in explore notebooks (#744)

This commit is contained in:
Jonatan Kłosko 2021-12-04 14:44:53 +01:00 committed by GitHub
parent 7fdfafe35d
commit 037c425643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -200,7 +200,7 @@ install the [Kino](https://github.com/livebook-dev/kino) library:
```elixir
Mix.install([
{:kino, "~> 0.3.1", github: "livebook-dev/kino"}
{:kino, "~> 0.4.0"}
])
```

View file

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

View file

@ -10,7 +10,7 @@ and interact with them.
```elixir
Mix.install([
{:kino, "~> 0.3.1"},
{:kino, "~> 0.4.0"},
{:vega_lite, "~> 0.1.2"}
])
```

View file

@ -11,7 +11,7 @@ directly, but it is required to render VegaLite:
```elixir
Mix.install([
{:vega_lite, "~> 0.1.2"},
{:kino, "~> 0.3.1"}
{:kino, "~> 0.4.0"}
])
```

View file

@ -17,7 +17,7 @@ the visualization and interactions.
```elixir
Mix.install([
{:kino, "~> 0.3.1", github: "livebook-dev/kino"}
{:kino, "~> 0.4.0"}
])
```

View file

@ -14,7 +14,7 @@ so let's add `:vega_lite` and `:kino` for that.
```elixir
Mix.install([
{:vega_lite, "~> 0.1.2"},
{:kino, "~> 0.3.1", github: "livebook-dev/kino"}
{:kino, "~> 0.4.0"}
])
```