File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
+ ## [ v0.1.9] ( https://github.com/livebook-dev/vega_lite/tree/v0.1.9 ) (2024-04-10)
8
+
9
+ ### Removed
10
+
11
+ - ` VegaLite.Data ` specialized plots
12
+
13
+ ### Fixed
14
+
15
+ - Prevent deprecation warnings from exporting an invalid image binary ([ #77 ] ( https://github.com/livebook-dev/vega_lite/pull/77 ) )
16
+
7
17
## [ v0.1.8] ( https://github.com/livebook-dev/vega_lite/tree/v0.1.8 ) (2023-08-19)
8
18
9
19
### Added
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ in which case you can call `Mix.install/2`:
21
21
22
22
``` elixir
23
23
Mix .install ([
24
- {:vega_lite , " ~> 0.1.8 " },
24
+ {:vega_lite , " ~> 0.1.9 " },
25
25
{:kino_vega_lite , " ~> 0.1.8" }
26
26
])
27
27
```
@@ -37,7 +37,7 @@ You can add the `:vega_lite` dependency to your `mix.exs`:
37
37
``` elixir
38
38
def deps do
39
39
[
40
- {:vega_lite , " ~> 0.1.8 " }
40
+ {:vega_lite , " ~> 0.1.9 " }
41
41
]
42
42
end
43
43
```
Original file line number Diff line number Diff line change 1
1
defmodule VegaLite.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.1.8 "
4
+ @ version "0.1.9 "
5
5
@ description "Elixir bindings to Vega-Lite"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments