From 6436becc23f00466122301d59e298d2833e143a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Tue, 27 Aug 2024 23:12:22 +0900 Subject: [PATCH] Release v0.1.1 --- 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 073d7a5..07e5368 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.1.1](https://github.com/livebook-dev/kino_flame/tree/v0.1.1) (2024-08-27) + +### Added + +* Support for selecting environment variables to pass to the runner ([#2](https://github.com/livebook-dev/kino_flame/pull/2)) + ## [v0.1.0](https://github.com/livebook-dev/kino_flame/tree/v0.1.0) (2024-07-26) Initial release. diff --git a/README.md b/README.md index 68d99c6..6e8707e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To bring KinoFLAME to Livebook all you need to do is `Mix.install/2`: ```elixir Mix.install([ - {:kino_flame, "~> 0.1.0"} + {:kino_flame, "~> 0.1.1"} ]) ``` diff --git a/guides/components.livemd b/guides/components.livemd index f4998ca..521a9eb 100644 --- a/guides/components.livemd +++ b/guides/components.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:kino_flame, "~> 0.1.0"} + {:kino_flame, "~> 0.1.1"} ]) ``` diff --git a/mix.exs b/mix.exs index 42ce82f..b0c31f9 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule KinoFLAME.MixProject do use Mix.Project - @version "0.1.0" + @version "0.1.1" @description "FLAME integration with Livebook" def project do