diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d013ff..108d298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,3 +4,8 @@ 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.0](https://github.com/livebook-dev/kino_explorer/tree/v0.1.0) (2023-03-07) + +Initial release. diff --git a/guides/components.livemd b/guides/components.livemd index da0482a..086f057 100644 --- a/guides/components.livemd +++ b/guides/components.livemd @@ -10,7 +10,7 @@ Mix.install([ ### Explorer -This integration automatically renders an `Explorer.DataFrame` as a data table: +This integration automatically renders an `Explorer.DataFrame` or `Explorer.Series` as a data table: ```elixir Explorer.Datasets.fossil_fuels() @@ -18,9 +18,15 @@ Explorer.Datasets.fossil_fuels() ### Kino.Explorer -A widget for interactively viewing `Explorer.DataFrame`. +A widget for interactively viewing `Explorer.DataFrame` or `Explorer.Series`. ```elixir df = Explorer.Datasets.fossil_fuels() Kino.Explorer.new(df) ``` + +## Smart cells + +The following Smart cells are available: + +* **Data transform** - for building data transform pipelines diff --git a/mix.exs b/mix.exs index 85cff8f..7880b7e 100644 --- a/mix.exs +++ b/mix.exs @@ -28,7 +28,7 @@ defmodule KinoExplorer.MixProject do defp deps do [ {:kino, "~> 0.8.1 or ~> 0.9.0"}, - {:explorer, "~> 0.5.2"}, + {:explorer, "~> 0.5.2 or ~> 0.6.0"}, {:rustler, "~> 0.27.0", optional: true}, {:ex_doc, "~> 0.29", only: :dev, runtime: false} ]