Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Dec 12, 2023
1 parent 33bc23d commit 9662d51
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,26 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.12.0](https://github.com/livebook-dev/kino/tree/v0.12.0) (2023-12-12)

### Added

* Support for S3 token in `Kino.FS.file_spec/1`, available on Livebook v0.12 onwards

### Changed

* `dbg` backend to fall back to the currently registered callback ([#369](https://github.com/livebook-dev/kino/pull/369))
* Changed charlists in `Kino.DataTable` to be formatted as strings only if ASCI-printable

### Fixed

* Fixed `Kino.DataTable` to handle integer lists that are not valid charlists ([#371](https://github.com/livebook-dev/kino/pull/371))

## [v0.11.3](https://github.com/livebook-dev/kino/tree/v0.11.3) (2023-11-15)

### Fixed

* Code with interpolation in remote execution smart cell ([#366](https://github.com/livebook-dev/kino/pull/366))
* Code with interpolation in remote execution smart cell ([#366](https://github.com/livebook-dev/kino/pull/366))

## [v0.11.2](https://github.com/livebook-dev/kino/tree/v0.11.2) (2023-11-09)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To bring Kino to Livebook all you need to do is `Mix.install/2`:

```elixir
Mix.install([
{:kino, "~> 0.11.3"}
{:kino, "~> 0.12.0"}
])
```

Expand Down
2 changes: 1 addition & 1 deletion lib/kino/fs.ex
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ defmodule Kino.FS do
endpoint: file_spec.bucket_url,
access_key_id: file_spec.access_key_id,
secret_access_key: file_spec.secret_access_key,
# Token field is only available on v0.12 onwards
# Token field is only available on Livebook v0.12 onwards
token: Map.get(file_spec, :token)
]
) do
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Kino.MixProject do
use Mix.Project

@version "0.11.3"
@version "0.12.0"
@description "Interactive widgets for Livebook"

def project do
Expand Down

0 comments on commit 9662d51

Please sign in to comment.