diff --git a/CHANGELOG.md b/CHANGELOG.md index 11cb96f29..ff24fbcd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# [9.13.0](/~https://github.com/react-native-community/react-native-svg/compare/v9.12.0...v9.13.0) (2019-10-23) + + +### Bug Fixes + +* camelCase css from style elements ([9ee5a28](/~https://github.com/react-native-community/react-native-svg/commit/9ee5a28b37edf403c503aed4f37edbaebe201eb0)) +* don't overwrite inline styles when inlining style elements ([6e1d825](/~https://github.com/react-native-community/react-native-svg/commit/6e1d8257a4b42b9888a6374ae203f07a932ca96f)) +* handle basic css media query selectors ([168ee25](/~https://github.com/react-native-community/react-native-svg/commit/168ee25ee4b193d85757e01b20840baf54872cfc)) +* handle style elements with CDATA ([b3fca84](/~https://github.com/react-native-community/react-native-svg/commit/b3fca84fb1b9091246310270d64dcef730ee05a9)) +* improve style element inlining, support more selectors and optimize ([8c9de72](/~https://github.com/react-native-community/react-native-svg/commit/8c9de72bda2a4e00efb1747f7c8e922fac92e194)) +* improve types for extractTransform ([a37ebbb](/~https://github.com/react-native-community/react-native-svg/commit/a37ebbbb1559b337b58327f79819c494029597fa)) +* only compute selector specificity once per selector ([9f53e31](/~https://github.com/react-native-community/react-native-svg/commit/9f53e31b24c940052a8d25671f92074194856f05)) +* types for css support ([c969159](/~https://github.com/react-native-community/react-native-svg/commit/c96915923e784607b14b7f437ae4dd58c31bde36)) +* use correct import in test ([a57963e](/~https://github.com/react-native-community/react-native-svg/commit/a57963eb4d3ec0c1645bf4251cf2b54507441532)) + + +### Features + +* implement experiment to inline css from style elements ([5f3852b](/~https://github.com/react-native-community/react-native-svg/commit/5f3852bf9cb41e79d50a4fcb800fdd7ba895f023)) +* implement SvgWithCss and SvgWithCssUri with Animated support ([6fb8dd5](/~https://github.com/react-native-community/react-native-svg/commit/6fb8dd53dba5af19ffc8f686a6310182fca87fd3)) + # [9.12.0](/~https://github.com/react-native-community/react-native-svg/compare/v9.11.1...v9.12.0) (2019-10-19) diff --git a/package-lock.json b/package-lock.json index b95b1f796..ef9060b3f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "react-native-svg", - "version": "9.12.0", + "version": "9.13.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 931215ca2..e83281fff 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "9.12.0", + "version": "9.13.0", "name": "react-native-svg", "description": "SVG library for react-native", "homepage": "/~https://github.com/react-native-community/react-native-svg",