diff --git a/CHANGELOG.md b/CHANGELOG.md index aeb6260..742f7a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.2.1 + +- Fixed: call to `renderToCSS` was missing parameters. + ## v1.2.0 - Added: `renderToCSS` method. It can be used together with the PostCSS transformer to add support for CSS variables. diff --git a/README.md b/README.md index 325ce61..f29ffad 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ If you are using [Expo](https://expo.io/), instead of adding the `rn-cli.config. ## CSS Custom Properties (CSS variables) -_You need version 1.2.0 or newer_ +_You need version 1.2.1 or newer_ ```css :root { diff --git a/package.json b/package.json index d14b0fd..8f112d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-less-transformer", - "version": "1.2.0", + "version": "1.2.1", "description": "Less transformer for react-native", "main": "index.js", "repository": "https://github.com/kristerkari/react-native-less-transformer",