diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0b7cc4..51e184f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/smooth-code/xstyled/compare/v1.16.0...v1.17.0) (2020-02-24) + + +### Bug Fixes + +* **prop-types:** border typo ([#98](https://github.com/smooth-code/xstyled/issues/98)) ([2078165](https://github.com/smooth-code/xstyled/commit/20781650f8403ce537d239e75b4501f87160da9d)) + + +### Features + +* add border-x-x-radius, outline-style, outline-width support ([693dc5d](https://github.com/smooth-code/xstyled/commit/693dc5de1669bc2d90b94d4ab44ed12d3164fb75)) +* alias backgroundColor prop with bg ([c23bfff](https://github.com/smooth-code/xstyled/commit/c23bfff2875bb5856c218ddc8dfbdb7d61ad3c5a)), closes [#89](https://github.com/smooth-code/xstyled/issues/89) +* support fontStyle in props ([1777736](https://github.com/smooth-code/xstyled/commit/17777366373c2f3ca864682f13158f6f3a962802)), closes [#91](https://github.com/smooth-code/xstyled/issues/91) + + + + + # [1.16.0](https://github.com/smooth-code/xstyled/compare/v1.15.1...v1.16.0) (2020-02-02) diff --git a/lerna.json b/lerna.json index f3870984..4b9cfcf2 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.16.0", + "version": "1.17.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 21a31137..96968ed1 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/core/compare/v1.16.0...v1.17.0) (2020-02-24) + + +### Bug Fixes + +* **prop-types:** border typo ([#98](https://github.com/smooth-code/xstyled/tree/master/packages/core/issues/98)) ([2078165](https://github.com/smooth-code/xstyled/tree/master/packages/core/commit/20781650f8403ce537d239e75b4501f87160da9d)) + + +### Features + +* add border-x-x-radius, outline-style, outline-width support ([693dc5d](https://github.com/smooth-code/xstyled/tree/master/packages/core/commit/693dc5de1669bc2d90b94d4ab44ed12d3164fb75)) + + + + + # [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/core/compare/v1.15.1...v1.16.0) (2020-02-02) diff --git a/packages/core/package.json b/packages/core/package.json index 6ce0173b..092eace4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@xstyled/core", "description": "xstyled core utilities", - "version": "1.16.0", + "version": "1.17.0", "sideEffects": false, "main": "dist/xstyled-core.cjs.js", "module": "dist/xstyled-core.es.js", @@ -23,6 +23,6 @@ }, "dependencies": { "@babel/runtime": "^7.8.3", - "@xstyled/system": "^1.16.0" + "@xstyled/system": "^1.17.0" } } diff --git a/packages/emotion/CHANGELOG.md b/packages/emotion/CHANGELOG.md index 95f42825..6262c6a0 100644 --- a/packages/emotion/CHANGELOG.md +++ b/packages/emotion/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/emotion/compare/v1.16.0...v1.17.0) (2020-02-24) + +**Note:** Version bump only for package @xstyled/emotion + + + + + # [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/emotion/compare/v1.15.1...v1.16.0) (2020-02-02) **Note:** Version bump only for package @xstyled/emotion diff --git a/packages/emotion/package.json b/packages/emotion/package.json index bfeaa896..9cb01d40 100644 --- a/packages/emotion/package.json +++ b/packages/emotion/package.json @@ -1,7 +1,7 @@ { "name": "@xstyled/emotion", "description": "Xstyled bindings for emotion.", - "version": "1.16.0", + "version": "1.17.0", "keywords": [ "emotion", "css", @@ -34,8 +34,8 @@ }, "dependencies": { "@babel/runtime": "^7.8.3", - "@xstyled/core": "^1.16.0", - "@xstyled/system": "^1.16.0", + "@xstyled/core": "^1.17.0", + "@xstyled/system": "^1.17.0", "@xstyled/util": "^1.16.0" } } diff --git a/packages/styled-components/CHANGELOG.md b/packages/styled-components/CHANGELOG.md index f253277d..be7891bf 100644 --- a/packages/styled-components/CHANGELOG.md +++ b/packages/styled-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/styled-components/compare/v1.16.0...v1.17.0) (2020-02-24) + +**Note:** Version bump only for package @xstyled/styled-components + + + + + # [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/styled-components/compare/v1.15.1...v1.16.0) (2020-02-02) diff --git a/packages/styled-components/package.json b/packages/styled-components/package.json index b320d446..12dff0c6 100644 --- a/packages/styled-components/package.json +++ b/packages/styled-components/package.json @@ -1,7 +1,7 @@ { "name": "@xstyled/styled-components", "description": "Xstyled bindings for styled-components.", - "version": "1.16.0", + "version": "1.17.0", "keywords": [ "styled-components", "css", @@ -32,8 +32,8 @@ }, "dependencies": { "@babel/runtime": "^7.8.3", - "@xstyled/core": "^1.16.0", - "@xstyled/system": "^1.16.0", + "@xstyled/core": "^1.17.0", + "@xstyled/system": "^1.17.0", "@xstyled/util": "^1.16.0" } } diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 36bf25bb..ac5b9577 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/system/compare/v1.16.0...v1.17.0) (2020-02-24) + + +### Features + +* alias backgroundColor prop with bg ([c23bfff](https://github.com/smooth-code/xstyled/tree/master/packages/system/commit/c23bfff2875bb5856c218ddc8dfbdb7d61ad3c5a)), closes [#89](https://github.com/smooth-code/xstyled/tree/master/packages/system/issues/89) +* support fontStyle in props ([1777736](https://github.com/smooth-code/xstyled/tree/master/packages/system/commit/17777366373c2f3ca864682f13158f6f3a962802)), closes [#91](https://github.com/smooth-code/xstyled/tree/master/packages/system/issues/91) + + + + + # [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/system/compare/v1.15.1...v1.16.0) (2020-02-02) **Note:** Version bump only for package @xstyled/system diff --git a/packages/system/package.json b/packages/system/package.json index 99ae3043..71815439 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,7 +1,7 @@ { "name": "@xstyled/system", "description": "Modern style system for styled-components & emotion.", - "version": "1.16.0", + "version": "1.17.0", "keywords": [ "emotion", "styled-components",