Skip to content

Commit

Permalink
Release v0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Nov 14, 2024
1 parent ab3fd74 commit d3595c7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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/).

## [v0.1.11](https://github.com/livebook-dev/vega_lite/tree/v0.1.11) (2024-11-14)

### Changed

- Deprecated `VegaLite.Export` and `VegaLite.Viewer` functions in favour of [`vega_lite_convert`](https://github.com/livebook-dev/vega_lite_convert) ([#82](https://github.com/livebook-dev/vega_lite/pull/82))

## [v0.1.10](https://github.com/livebook-dev/vega_lite/tree/v0.1.10) (2024-10-19)

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ in which case you can call `Mix.install/2`:

```elixir
Mix.install([
{:vega_lite, "~> 0.1.10"},
{:vega_lite, "~> 0.1.11"},
{:kino_vega_lite, "~> 0.1.8"}
])
```
Expand All @@ -37,7 +37,7 @@ You can add the `:vega_lite` dependency to your `mix.exs`:
```elixir
def deps do
[
{:vega_lite, "~> 0.1.10"}
{:vega_lite, "~> 0.1.11"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule VegaLite.MixProject do
use Mix.Project

@version "0.1.10"
@version "0.1.11"
@description "Elixir bindings to Vega-Lite"

def project do
Expand Down

0 comments on commit d3595c7

Please sign in to comment.