Skip to content

Commit 31de7ff

Browse files
committed
v2.1.0
1 parent 6bc0d4e commit 31de7ff

File tree

12 files changed

+87
-11
lines changed

12 files changed

+87
-11
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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+
# [2.1.0](https://github.com/smooth-code/xstyled/compare/v2.0.0...v2.1.0) (2021-01-11)
7+
8+
9+
### Bug Fixes
10+
11+
* adding children to emotion jsx function ([#166](https://github.com/smooth-code/xstyled/issues/166)) ([6bc0d4e](https://github.com/smooth-code/xstyled/commit/6bc0d4ea574e1a6cdee622c8d0b8a7b431b2028a))
12+
* size 0.5 conflict fluid range ([#168](https://github.com/smooth-code/xstyled/issues/168)) ([762aa1c](https://github.com/smooth-code/xstyled/commit/762aa1ccf6e4829d0664481a2be2e2ad2c4a0bf9))
13+
14+
15+
### Features
16+
17+
* **emotion:** add preflight component to emotion ([#167](https://github.com/smooth-code/xstyled/issues/167)) ([b56e6b6](https://github.com/smooth-code/xstyled/commit/b56e6b66c26f3854bc17d6622567081122556fb4))
18+
19+
20+
21+
22+
623
## [1.19.1](https://github.com/gregberge/xstyled/compare/v1.19.0...v1.19.1) (2020-11-04)
724

825

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": "2.0.0",
6+
"version": "2.1.0",
77
"npmClient": "yarn",
88
"useWorkspaces": true
99
}

packages/core/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+
# [2.1.0](https://github.com/gregberge/xstyled/tree/master/packages/core/compare/v2.0.0...v2.1.0) (2021-01-11)
7+
8+
**Note:** Version bump only for package @xstyled/core
9+
10+
11+
12+
13+
614
## [1.19.1](https://github.com/gregberge/xstyled/tree/master/packages/core/compare/v1.19.0...v1.19.1) (2020-11-04)
715

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

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": "2.0.0",
4+
"version": "2.1.0",
55
"sideEffects": false,
66
"main": "dist/index.js",
77
"module": "dist/core.esm.js",
@@ -25,6 +25,6 @@
2525
},
2626
"dependencies": {
2727
"@babel/runtime": "^7.11.2",
28-
"@xstyled/system": "^2.0.0"
28+
"@xstyled/system": "^2.1.0"
2929
}
3030
}

packages/emotion/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+
# [2.1.0](https://github.com/gregberge/xstyled/tree/master/packages/emotion/compare/v2.0.0...v2.1.0) (2021-01-11)
7+
8+
9+
### Bug Fixes
10+
11+
* adding children to emotion jsx function ([#166](https://github.com/gregberge/xstyled/tree/master/packages/emotion/issues/166)) ([6bc0d4e](https://github.com/gregberge/xstyled/tree/master/packages/emotion/commit/6bc0d4ea574e1a6cdee622c8d0b8a7b431b2028a))
12+
13+
14+
### Features
15+
16+
* **emotion:** add preflight component to emotion ([#167](https://github.com/gregberge/xstyled/tree/master/packages/emotion/issues/167)) ([b56e6b6](https://github.com/gregberge/xstyled/tree/master/packages/emotion/commit/b56e6b66c26f3854bc17d6622567081122556fb4))
17+
18+
19+
20+
21+
622
## [1.19.1](https://github.com/gregberge/xstyled/tree/master/packages/emotion/compare/v1.19.0...v1.19.1) (2020-11-04)
723

824
**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": "A utility-first CSS-in-JS framework built for React (Emotion bindings).",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"keywords": [
66
"emotion",
77
"css",
@@ -36,8 +36,8 @@
3636
},
3737
"dependencies": {
3838
"@babel/runtime": "^7.11.2",
39-
"@xstyled/core": "^2.0.0",
40-
"@xstyled/system": "^2.0.0",
39+
"@xstyled/core": "^2.1.0",
40+
"@xstyled/system": "^2.1.0",
4141
"@xstyled/util": "^2.0.0"
4242
}
4343
}

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+
# [2.1.0](https://github.com/gregberge/xstyled/tree/master/packages/styled-components/compare/v2.0.0...v2.1.0) (2021-01-11)
7+
8+
**Note:** Version bump only for package @xstyled/styled-components
9+
10+
11+
12+
13+
614
## [1.19.1](https://github.com/gregberge/xstyled/tree/master/packages/styled-components/compare/v1.19.0...v1.19.1) (2020-11-04)
715

816
**Note:** Version bump only for package @xstyled/styled-components

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": "A utility-first CSS-in-JS framework built for React (styled-components bindings).",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"keywords": [
66
"styled-components",
77
"css",
@@ -35,8 +35,8 @@
3535
},
3636
"dependencies": {
3737
"@babel/runtime": "^7.11.2",
38-
"@xstyled/core": "^2.0.0",
39-
"@xstyled/system": "^2.0.0",
38+
"@xstyled/core": "^2.1.0",
39+
"@xstyled/system": "^2.1.0",
4040
"@xstyled/util": "^2.0.0"
4141
}
4242
}

packages/system/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [2.1.0](https://github.com/gregberge/xstyled/tree/master/packages/system/compare/v2.0.0...v2.1.0) (2021-01-11)
7+
8+
9+
### Bug Fixes
10+
11+
* size 0.5 conflict fluid range ([#168](https://github.com/gregberge/xstyled/tree/master/packages/system/issues/168)) ([762aa1c](https://github.com/gregberge/xstyled/tree/master/packages/system/commit/762aa1ccf6e4829d0664481a2be2e2ad2c4a0bf9))
12+
13+
14+
15+
16+
617
## [1.19.1](https://github.com/gregberge/xstyled/tree/master/packages/system/compare/v1.19.0...v1.19.1) (2020-11-04)
718

819

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": "xstyled system utilities.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"keywords": [
66
"emotion",
77
"styled-components",

0 commit comments

Comments
 (0)