Skip to content

Commit

Permalink
Version Packages (next)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 15, 2020
1 parent d949a37 commit c777bd6
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@
"moody-stingrays-sort",
"neat-geese-knock",
"neat-ligers-film",
"neat-pugs-deny",
"nervous-clouds-brush",
"nervous-nails-develop",
"nice-apples-arrive",
"nine-mugs-care",
"odd-flowers-breathe",
"odd-geese-matter",
Expand Down
6 changes: 6 additions & 0 deletions packages/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @emotion/cache

## 11.0.0-next.18

### Patch Changes

- [`19df60b8`](https://github.com/emotion-js/emotion/commit/19df60b8382814f241f909e1f4cb98fe19e72a4a) [#2015](https://github.com/emotion-js/emotion/pull/2015) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with rules nested in orphaned pseudo selectors not being adjusted correctly.

## 11.0.0-next.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.0.0-next.16",
"version": "11.0.0-next.18",
"description": "emotion's cache",
"main": "dist/cache.cjs.js",
"module": "dist/cache.esm.js",
Expand Down
20 changes: 20 additions & 0 deletions packages/native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @emotion/native

## 11.0.0-next.18

### Patch Changes

- [`db16ac35`](https://github.com/emotion-js/emotion/commit/db16ac358ded4cc04fbd649700716b7cb3b3e40a) [#2013](https://github.com/emotion-js/emotion/pull/2013) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with styles being lost for nested factory calls like:

```js
const bgColor = color => css`
background-color: ${color};
`

const Text = styled.Text`
color: hotpink;
${({ backgroundColor }) => bgColor(backgroundColor)};
`
```

- Updated dependencies [[`db16ac35`](https://github.com/emotion-js/emotion/commit/db16ac358ded4cc04fbd649700716b7cb3b3e40a)]:
- @emotion/primitives-core@11.0.0-next.18

## 11.0.0-next.17

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/native",
"version": "11.0.0-next.17",
"version": "11.0.0-next.18",
"description": "Style and render React Native components using emotion",
"main": "dist/native.cjs.js",
"module": "dist/native.esm.js",
Expand All @@ -22,7 +22,7 @@
"react-native": "^0.61.5"
},
"dependencies": {
"@emotion/primitives-core": "11.0.0-next.17"
"@emotion/primitives-core": "11.0.0-next.18"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
Expand Down
17 changes: 17 additions & 0 deletions packages/primitives-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @emotion/primitives-core

## 11.0.0-next.18

### Patch Changes

- [`db16ac35`](https://github.com/emotion-js/emotion/commit/db16ac358ded4cc04fbd649700716b7cb3b3e40a) [#2013](https://github.com/emotion-js/emotion/pull/2013) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with styles being lost for nested factory calls like:

```js
const bgColor = color => css`
background-color: ${color};
`

const Text = styled.Text`
color: hotpink;
${({ backgroundColor }) => bgColor(backgroundColor)};
`
```

## 11.0.0-next.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/primitives-core",
"version": "11.0.0-next.17",
"version": "11.0.0-next.18",
"description": "Shared utilities for emotion primitives and native",
"main": "dist/primitives-core.cjs.js",
"module": "dist/primitives-core.esm.js",
Expand Down
20 changes: 20 additions & 0 deletions packages/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @emotion/primitives

## 11.0.0-next.18

### Patch Changes

- [`db16ac35`](https://github.com/emotion-js/emotion/commit/db16ac358ded4cc04fbd649700716b7cb3b3e40a) [#2013](https://github.com/emotion-js/emotion/pull/2013) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with styles being lost for nested factory calls like:

```js
const bgColor = color => css`
background-color: ${color};
`

const Text = styled.Text`
color: hotpink;
${({ backgroundColor }) => bgColor(backgroundColor)};
`
```

- Updated dependencies [[`db16ac35`](https://github.com/emotion-js/emotion/commit/db16ac358ded4cc04fbd649700716b7cb3b3e40a)]:
- @emotion/primitives-core@11.0.0-next.18

## 11.0.0-next.17

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/primitives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/primitives",
"version": "11.0.0-next.17",
"version": "11.0.0-next.18",
"main": "dist/primitives.cjs.js",
"module": "dist/primitives.esm.js",
"scripts": {
Expand All @@ -14,7 +14,7 @@
"dependencies": {
"@emotion/babel-plugin": "^11.0.0-next.17",
"@emotion/is-prop-valid": "0.9.0-next.1",
"@emotion/primitives-core": "11.0.0-next.17"
"@emotion/primitives-core": "11.0.0-next.18"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
Expand Down

0 comments on commit c777bd6

Please sign in to comment.