From bb6af5bc11fec657cc76c974e6684ae48ac314ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Thu, 15 Aug 2024 16:12:40 +0900 Subject: [PATCH] Release v0.2.10 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- guides/components.livemd | 2 +- mix.exs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5f113..9e102e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.2.10](https://github.com/livebook-dev/kino_db/tree/v0.2.10) (2024-08-15) + +### Fixed + +* SQL cell to keep the selected connection when not defined ([#75](https://github.com/livebook-dev/kino_db/pull/75)) + ## [v0.2.9](https://github.com/livebook-dev/kino_db/tree/v0.2.9) (2024-07-26) ### Fixed diff --git a/README.md b/README.md index 16f074d..0342b60 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To bring KinoDB to Livebook all you need to do is `Mix.install/2`: ```elixir Mix.install([ - {:kino_db, "~> 0.2.9"} + {:kino_db, "~> 0.2.10"} ]) ``` diff --git a/guides/components.livemd b/guides/components.livemd index db58987..7078c54 100644 --- a/guides/components.livemd +++ b/guides/components.livemd @@ -4,7 +4,7 @@ Mix.install([ # {:postgrex, "~> 0.18"}, # {:myxql, "~> 0.7.0"}, - {:kino_db, "~> 0.2.9"} + {:kino_db, "~> 0.2.10"} ]) ``` diff --git a/mix.exs b/mix.exs index dd3b02a..fd8edac 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule KinoDB.MixProject do use Mix.Project - @version "0.2.9" + @version "0.2.10" @description "Databases integration with Livebook" def project do