Skip to content

Commit af10d59

Browse files
committed
v3.1.1
1 parent eeaff89 commit af10d59

File tree

12 files changed

+83
-13
lines changed

12 files changed

+83
-13
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+
## [3.1.1](https://github.com/gregberge/xstyled/compare/v3.1.0...v3.1.1) (2021-10-30)
7+
8+
9+
### Bug Fixes
10+
11+
* allow numeric values for systemprops ([efdefe1](https://github.com/gregberge/xstyled/commit/efdefe1ddcf481a10bac1f7473143ce140e34ca8))
12+
* boolean or string for transform property type ([1498d86](https://github.com/gregberge/xstyled/commit/1498d8671af5b46357ae99ae85c4ed62213e065f))
13+
* color prop missing responsive support ([65f532b](https://github.com/gregberge/xstyled/commit/65f532bd1bf2f1b2dbc56068ef8d943223d7b4ff))
14+
* ensure the number is one of the keys ([c2f71fd](https://github.com/gregberge/xstyled/commit/c2f71fd5c01b2f8597c4de370c39486218aa291b))
15+
* more correct synthesized type that allows number keys ([c31c6b1](https://github.com/gregberge/xstyled/commit/c31c6b11b024fd9e5b96640f51d8f2b0c0342bb8))
16+
* move typography color fix to proper file ([5c635b0](https://github.com/gregberge/xstyled/commit/5c635b08f321ce5c81ca7c2dbb93d29ca7ab9b12))
17+
* transform prop type should be string not boolean ([50c847e](https://github.com/gregberge/xstyled/commit/50c847eddf11bcfb770830e98bdacda3514f4889))
18+
* **types:** fix emotion createGlobalStyle type def ([95667bc](https://github.com/gregberge/xstyled/commit/95667bcb1d25ad008fd51080af66323b3be930ab))
19+
20+
21+
22+
23+
624
# [3.1.0](https://github.com/gregberge/xstyled/compare/v3.0.3...v3.1.0) (2021-10-02)
725

826

benchmarks/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+
## [3.1.1](https://github.com/gregberge/xstyled/compare/v3.1.0...v3.1.1) (2021-10-30)
7+
8+
**Note:** Version bump only for package @xstyled/benchmarks
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/gregberge/xstyled/compare/v3.0.3...v3.1.0) (2021-10-02)
715

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

benchmarks/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xstyled/benchmarks",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"private": true,
55
"scripts": {
66
"bench-system": "node ./system.js",
@@ -26,8 +26,8 @@
2626
"@emotion/core": "^11.0.0",
2727
"@emotion/react": "^11.4.1",
2828
"@emotion/styled": "^11.3.0",
29-
"@xstyled/emotion": "^3.1.0",
30-
"@xstyled/styled-components": "^3.1.0",
29+
"@xstyled/emotion": "^3.1.1",
30+
"@xstyled/styled-components": "^3.1.1",
3131
"emotion-theming": "^11.0.0",
3232
"styled-components": "^5.3.0",
3333
"styled-system": "^5.1.5"

lerna.json

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

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+
## [3.1.1](https://github.com/gregberge/xstyled/compare/v3.1.0...v3.1.1) (2021-10-30)
7+
8+
**Note:** Version bump only for package @xstyled/core
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/gregberge/xstyled/compare/v3.0.3...v3.1.0) (2021-10-02)
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": "3.1.0",
4+
"version": "3.1.1",
55
"sideEffects": false,
66
"main": "dist/index.js",
77
"module": "dist/index.esm.js",
@@ -23,6 +23,6 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@xstyled/system": "^3.1.0"
26+
"@xstyled/system": "^3.1.1"
2727
}
2828
}

packages/emotion/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+
## [3.1.1](https://github.com/gregberge/xstyled/compare/v3.1.0...v3.1.1) (2021-10-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **types:** fix emotion createGlobalStyle type def ([95667bc](https://github.com/gregberge/xstyled/commit/95667bcb1d25ad008fd51080af66323b3be930ab))
12+
13+
14+
15+
16+
617
# [3.1.0](https://github.com/gregberge/xstyled/compare/v3.0.3...v3.1.0) (2021-10-02)
718

819
**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": "3.1.0",
4+
"version": "3.1.1",
55
"keywords": [
66
"emotion",
77
"css",
@@ -34,8 +34,8 @@
3434
"@emotion/styled": "^11.0.0"
3535
},
3636
"dependencies": {
37-
"@xstyled/core": "^3.1.0",
38-
"@xstyled/system": "^3.1.0",
37+
"@xstyled/core": "^3.1.1",
38+
"@xstyled/system": "^3.1.1",
3939
"@xstyled/util": "^3.1.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+
## [3.1.1](https://github.com/gregberge/xstyled/compare/v3.1.0...v3.1.1) (2021-10-30)
7+
8+
**Note:** Version bump only for package @xstyled/styled-components
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/gregberge/xstyled/compare/v3.0.3...v3.1.0) (2021-10-02)
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": "3.1.0",
4+
"version": "3.1.1",
55
"keywords": [
66
"styled-components",
77
"css",
@@ -33,8 +33,8 @@
3333
"styled-components": "^4.0.0 || ^5.0.0"
3434
},
3535
"dependencies": {
36-
"@xstyled/core": "^3.1.0",
37-
"@xstyled/system": "^3.1.0",
36+
"@xstyled/core": "^3.1.1",
37+
"@xstyled/system": "^3.1.1",
3838
"@xstyled/util": "^3.1.0"
3939
}
4040
}

0 commit comments

Comments
 (0)