From 237c3bcb977e20157879fdc63947430e266ecac0 Mon Sep 17 00:00:00 2001 From: chrisrzhou Date: Tue, 21 Jul 2020 02:19:59 -0700 Subject: [PATCH] prep for v.1.2.4 --- changelog.md | 8 ++++++++ package.json | 2 +- readme.md | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index c051720..9296446 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,13 @@ # Changelog +## [1.2.4](https://github.com/chrisrzhou/react-wordcloud/compare/v1.2.4...v1.2.3) (2020-07-21) + +- Added `...rest` props (@davidjb) +- Added `tooltipOptions` to `options` (@davidjb) to configure `tippy` tooltips. +- Added `svgAttributes` and `textAttributes` to `options` to configure attributes on `svg` and `text` nodes. +- Development: updated dependencies, XO lint rules, use absolute imports with `~`, spaces over tabs, `microbundle` over `rollup`, `npm` over `yarn`. +- Updated docs + ## [1.2.3](https://github.com/chrisrzhou/react-wordcloud/compare/v1.2.3...v1.2.2) (2020-05-02) Add `randomSeed` option to provide and control a seed for the random function when `deterministic` option is set to `true`. diff --git a/package.json b/package.json index 6b11feb..39120c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-wordcloud", - "version": "1.2.3", + "version": "1.2.4", "description": "Simple React + D3 wordcloud component with powerful features.", "license": "MIT", "homepage": "https://react-wordcloud.netlify.com/", diff --git a/readme.md b/readme.md index 3026433..7b30eda 100644 --- a/readme.md +++ b/readme.md @@ -7,8 +7,8 @@ Simple React + D3 wordcloud component with powerful features. Uses the [`d3-clou ## Install ```sh -yarn add react-wordcloud -``` +npm install react-wordcloud +`` Note that `react-wordcloud` requires `react^16.13.0` as a peer dependency.