Skip to content

Commit

Permalink
Release v0.1.0 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristineguadelupe authored Mar 7, 2023
1 parent 617b00c commit e271f47
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
10 changes: 8 additions & 2 deletions guides/components.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,23 @@ 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()
```

### 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
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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}
]
Expand Down

0 comments on commit e271f47

Please sign in to comment.