diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f127d2..67448d5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 9bab9250..33acb325 100644 --- a/README.md +++ b/README.md @@ -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"} ]) ``` diff --git a/lib/kino/fs.ex b/lib/kino/fs.ex index 4f497430..20536a41 100644 --- a/lib/kino/fs.ex +++ b/lib/kino/fs.ex @@ -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 diff --git a/mix.exs b/mix.exs index 95cd61f3..033e7c75 100644 --- a/mix.exs +++ b/mix.exs @@ -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