diff --git a/CHANGELOG.md b/CHANGELOG.md index ac6c15f..af67299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.14.0](https://github.com/livebook-dev/kino/tree/v0.14.0) (2024-08-26) + +### Added + +* Added `Kino.Audio.play/1` and `Kino.Audio.pause/1` ([#458](https://github.com/livebook-dev/kino/pull/458)) +* Support for specifying column ratios in `Kino.Layout.grid/2` ([#459](https://github.com/livebook-dev/kino/pull/459)) +* Support for toggling Smart cell editor visibility ([#467](https://github.com/livebook-dev/kino/pull/467)) + +### Changed + +* Remote smart cell to generate code with triple quote when content contains a quote ([#465](https://github.com/livebook-dev/kino/pull/465)) + +### Fixed + ## [v0.13.2](https://github.com/livebook-dev/kino/tree/v0.13.2) (2024-07-05) ### Added diff --git a/README.md b/README.md index e5f5e48..92e0dfd 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.13.1"} + {:kino, "~> 0.14.0"} ]) ``` diff --git a/mix.exs b/mix.exs index 6b1c54e..3da8e92 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Kino.MixProject do use Mix.Project - @version "0.13.2" + @version "0.14.0" @description "Interactive widgets for Livebook" def project do