From 1f63f9075c93922e12ce33079144fa5c987d2a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Tue, 22 Oct 2024 14:50:01 +0800 Subject: [PATCH] Release v0.14.2 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db7464b8..024e12cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.2](https://github.com/livebook-dev/kino/tree/v0.14.2) (2024-10-22) + +### Added + +* Support setting a custom number of rows in `Kino.DataTable` ([#476](https://github.com/livebook-dev/kino/pull/476)) +* Added `:caption` and `:download` options to `Kino.Mermaid` ([#477](https://github.com/livebook-dev/kino/pull/477)) + +### Changed + +* Update `Kino.Mermaid` to use Mermaid v11 +* Increased the max column width in `Kino.DataTable` + ## [v0.14.1](https://github.com/livebook-dev/kino/tree/v0.14.1) (2024-09-20) ### Added diff --git a/README.md b/README.md index 404a6c47..c5dd65bd 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.14.1"} + {:kino, "~> 0.14.2"} ]) ``` diff --git a/mix.exs b/mix.exs index 4d114057..e2fe137d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Kino.MixProject do use Mix.Project - @version "0.14.1" + @version "0.14.2" @description "Interactive widgets for Livebook" def project do