mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-18 09:27:14 +08:00
parent
5c1c61d0f2
commit
81c9871802
9 changed files with 9 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -55,7 +55,7 @@ instance, otherwise the command below will fail.
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, github: "livebook-dev/kino"}
|
||||
{:kino, "~> 0.5.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -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"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ install it and get started:
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, github: "livebook-dev/kino"}
|
||||
{:kino, "~> 0.5.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ First, let's install `kino`:
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, github: "livebook-dev/kino"}
|
||||
{:kino, "~> 0.5.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ and interact with them. Let's install it:
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, github: "livebook-dev/kino"}
|
||||
{:kino, "~> 0.5.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Let's get started and install `kino`:
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, github: "livebook-dev/kino"}
|
||||
{:kino, "~> 0.5.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -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"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue