Skip to content

Commit e31a88a

Browse files
committed
v1.17.0
1 parent ad3732b commit e31a88a

File tree

10 files changed

+72
-10
lines changed

10 files changed

+72
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.17.0](https://github.com/smooth-code/xstyled/compare/v1.16.0...v1.17.0) (2020-02-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **prop-types:** border typo ([#98](https://github.com/smooth-code/xstyled/issues/98)) ([2078165](https://github.com/smooth-code/xstyled/commit/20781650f8403ce537d239e75b4501f87160da9d))
12+
13+
14+
### Features
15+
16+
* add border-x-x-radius, outline-style, outline-width support ([693dc5d](https://github.com/smooth-code/xstyled/commit/693dc5de1669bc2d90b94d4ab44ed12d3164fb75))
17+
* alias backgroundColor prop with bg ([c23bfff](https://github.com/smooth-code/xstyled/commit/c23bfff2875bb5856c218ddc8dfbdb7d61ad3c5a)), closes [#89](https://github.com/smooth-code/xstyled/issues/89)
18+
* support fontStyle in props ([1777736](https://github.com/smooth-code/xstyled/commit/17777366373c2f3ca864682f13158f6f3a962802)), closes [#91](https://github.com/smooth-code/xstyled/issues/91)
19+
20+
21+
22+
23+
624
# [1.16.0](https://github.com/smooth-code/xstyled/compare/v1.15.1...v1.16.0) (2020-02-02)
725

826

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "1.16.0",
6+
"version": "1.17.0",
77
"npmClient": "yarn",
88
"useWorkspaces": true
99
}

packages/core/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/core/compare/v1.16.0...v1.17.0) (2020-02-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **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))
12+
13+
14+
### Features
15+
16+
* add border-x-x-radius, outline-style, outline-width support ([693dc5d](https://github.com/smooth-code/xstyled/tree/master/packages/core/commit/693dc5de1669bc2d90b94d4ab44ed12d3164fb75))
17+
18+
19+
20+
21+
622
# [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/core/compare/v1.15.1...v1.16.0) (2020-02-02)
723

824

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xstyled/core",
33
"description": "xstyled core utilities",
4-
"version": "1.16.0",
4+
"version": "1.17.0",
55
"sideEffects": false,
66
"main": "dist/xstyled-core.cjs.js",
77
"module": "dist/xstyled-core.es.js",
@@ -23,6 +23,6 @@
2323
},
2424
"dependencies": {
2525
"@babel/runtime": "^7.8.3",
26-
"@xstyled/system": "^1.16.0"
26+
"@xstyled/system": "^1.17.0"
2727
}
2828
}

packages/emotion/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/emotion/compare/v1.16.0...v1.17.0) (2020-02-24)
7+
8+
**Note:** Version bump only for package @xstyled/emotion
9+
10+
11+
12+
13+
614
# [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/emotion/compare/v1.15.1...v1.16.0) (2020-02-02)
715

816
**Note:** Version bump only for package @xstyled/emotion

packages/emotion/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xstyled/emotion",
33
"description": "Xstyled bindings for emotion.",
4-
"version": "1.16.0",
4+
"version": "1.17.0",
55
"keywords": [
66
"emotion",
77
"css",
@@ -34,8 +34,8 @@
3434
},
3535
"dependencies": {
3636
"@babel/runtime": "^7.8.3",
37-
"@xstyled/core": "^1.16.0",
38-
"@xstyled/system": "^1.16.0",
37+
"@xstyled/core": "^1.17.0",
38+
"@xstyled/system": "^1.17.0",
3939
"@xstyled/util": "^1.16.0"
4040
}
4141
}

packages/styled-components/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/styled-components/compare/v1.16.0...v1.17.0) (2020-02-24)
7+
8+
**Note:** Version bump only for package @xstyled/styled-components
9+
10+
11+
12+
13+
614
# [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/styled-components/compare/v1.15.1...v1.16.0) (2020-02-02)
715

816

packages/styled-components/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xstyled/styled-components",
33
"description": "Xstyled bindings for styled-components.",
4-
"version": "1.16.0",
4+
"version": "1.17.0",
55
"keywords": [
66
"styled-components",
77
"css",
@@ -32,8 +32,8 @@
3232
},
3333
"dependencies": {
3434
"@babel/runtime": "^7.8.3",
35-
"@xstyled/core": "^1.16.0",
36-
"@xstyled/system": "^1.16.0",
35+
"@xstyled/core": "^1.17.0",
36+
"@xstyled/system": "^1.17.0",
3737
"@xstyled/util": "^1.16.0"
3838
}
3939
}

packages/system/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.17.0](https://github.com/smooth-code/xstyled/tree/master/packages/system/compare/v1.16.0...v1.17.0) (2020-02-24)
7+
8+
9+
### Features
10+
11+
* 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)
12+
* 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)
13+
14+
15+
16+
17+
618
# [1.16.0](https://github.com/smooth-code/xstyled/tree/master/packages/system/compare/v1.15.1...v1.16.0) (2020-02-02)
719

820
**Note:** Version bump only for package @xstyled/system

packages/system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xstyled/system",
33
"description": "Modern style system for styled-components & emotion.",
4-
"version": "1.16.0",
4+
"version": "1.17.0",
55
"keywords": [
66
"emotion",
77
"styled-components",

0 commit comments

Comments
 (0)