Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarshall committed Aug 3, 2020
1 parent 6c7a596 commit ffb2f2b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/sanddance-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Import these in your JavaScript:
```js
import * as deck from '@deck.gl/core';
import * as layers from '@deck.gl/layers';
import * as luma from 'luma.gl';
import * as luma from '@luma.gl/core';
import * as vega from 'vega';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
Expand Down
7 changes: 6 additions & 1 deletion packages/sanddance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Import these in your JavaScript, then call the `use()` function to pass the depe
```js
import * as deck from '@deck.gl/core';
import * as layers from '@deck.gl/layers';
import * as luma from 'luma.gl';
import * as luma from '@luma.gl/core';
import * as vega from 'vega';
import * as SandDance from '@msrvida/sanddance';

Expand All @@ -51,6 +51,11 @@ SandDance.use(vega, deck, layers, luma);

## Versions

### 3.1.0 Changes

* Fix for animation easing
* Text character set accepts all unicode

### Breaking changes in v3

* deck.gl dependency from 6.4 to 8.1
Expand Down
12 changes: 11 additions & 1 deletion packages/vega-deck.gl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Import these in your JavaScript, then call the `use()` function to pass the depe
```js
import * as deck from '@deck.gl/core';
import * as layers from '@deck.gl/layers';
import * as luma from 'luma.gl';
import * as luma from '@luma.gl/core';
import * as vega from 'vega';
import * as VegaDeckGl from '@msrvida/vega-deck.gl';

Expand All @@ -74,6 +74,16 @@ var view = new VegaDeckGl.ViewGl(vega.parse(spec))

## Versions

### 3.2.0 Changes

* Fix for animation easing
* Text character set accepts all unicode

### 3.1.0 Changes

* Added line marks
* Added area marks

### Breaking changes in v3

* `Stage.TickText` now `VegaTextLayerDatum` type
Expand Down

0 comments on commit ffb2f2b

Please sign in to comment.