diff --git a/CHANGELOG.md b/CHANGELOG.md index f81256d..39e3bed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +### Bug Fixes + +- **example-nextjs:** hydrate styles only once ([72d1c79](https://github.com/kripod/otion/commit/72d1c79f04922a34fcb5a1874426b788019b36ae)) + +### Features + +- conditional rule precedence management ([7ecaaa2](https://github.com/kripod/otion/commit/7ecaaa2fe29834d1397f59566c7b422e3b454614)) + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) ### Bug Fixes diff --git a/lerna.json b/lerna.json index caa0a47..3fc5ad1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.4.0", + "version": "0.5.0", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/example-cra/CHANGELOG.md b/packages/example-cra/CHANGELOG.md index 350e615..41c6ce9 100644 --- a/packages/example-cra/CHANGELOG.md +++ b/packages/example-cra/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +**Note:** Version bump only for package otion-example-cra + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) **Note:** Version bump only for package otion-example-cra diff --git a/packages/example-cra/package.json b/packages/example-cra/package.json index 74f67f4..a28721f 100644 --- a/packages/example-cra/package.json +++ b/packages/example-cra/package.json @@ -1,6 +1,6 @@ { "name": "otion-example-cra", - "version": "0.4.0", + "version": "0.5.0", "private": true, "scripts": { "build": "react-scripts build", @@ -23,7 +23,7 @@ }, "dependencies": { "cra-template-typescript": "1.0.3", - "otion": "^0.4.0", + "otion": "^0.5.0", "react": "^16.13.1", "react-dom": "^16.13.1", "react-scripts": "3.4.1" diff --git a/packages/example-gatsby/CHANGELOG.md b/packages/example-gatsby/CHANGELOG.md index 1bec60d..1ed76f9 100644 --- a/packages/example-gatsby/CHANGELOG.md +++ b/packages/example-gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +### Features + +- conditional rule precedence management ([7ecaaa2](https://github.com/kripod/otion/commit/7ecaaa2fe29834d1397f59566c7b422e3b454614)) + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) **Note:** Version bump only for package otion-example-gatsby diff --git a/packages/example-gatsby/package.json b/packages/example-gatsby/package.json index d0787c4..2ca08e2 100644 --- a/packages/example-gatsby/package.json +++ b/packages/example-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "otion-example-gatsby", - "version": "0.4.0", + "version": "0.5.0", "private": true, "scripts": { "build": "gatsby build", @@ -12,10 +12,10 @@ "dependencies": { "@types/react-dom": "^16.9.8", "gatsby": "^2.24.3", - "gatsby-plugin-otion": "^0.4.0", - "otion": "^0.4.0", + "gatsby-plugin-otion": "^0.5.0", + "otion": "^0.5.0", "react": "^16.12.0", "react-dom": "^16.12.0", - "react-otion": "^0.4.0" + "react-otion": "^0.5.0" } } diff --git a/packages/example-nextjs/CHANGELOG.md b/packages/example-nextjs/CHANGELOG.md index fd91f9e..0504ccd 100644 --- a/packages/example-nextjs/CHANGELOG.md +++ b/packages/example-nextjs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +### Bug Fixes + +- **example-nextjs:** hydrate styles only once ([72d1c79](https://github.com/kripod/otion/commit/72d1c79f04922a34fcb5a1874426b788019b36ae)) + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) **Note:** Version bump only for package otion-example-nextjs diff --git a/packages/example-nextjs/package.json b/packages/example-nextjs/package.json index 371fa73..af336a7 100644 --- a/packages/example-nextjs/package.json +++ b/packages/example-nextjs/package.json @@ -1,6 +1,6 @@ { "name": "otion-example-nextjs", - "version": "0.4.0", + "version": "0.5.0", "private": true, "scripts": { "build": "next build", @@ -11,10 +11,10 @@ }, "dependencies": { "next": "^9.4.4", - "otion": "^0.4.0", + "otion": "^0.5.0", "react": "^16.13.1", "react-dom": "^16.13.1", - "react-otion": "^0.4.0" + "react-otion": "^0.5.0" }, "devDependencies": { "@types/node": "^14.0.23", diff --git a/packages/gatsby-plugin-otion/CHANGELOG.md b/packages/gatsby-plugin-otion/CHANGELOG.md index 3e630d9..686ad27 100644 --- a/packages/gatsby-plugin-otion/CHANGELOG.md +++ b/packages/gatsby-plugin-otion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +**Note:** Version bump only for package gatsby-plugin-otion + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) **Note:** Version bump only for package gatsby-plugin-otion diff --git a/packages/gatsby-plugin-otion/package.json b/packages/gatsby-plugin-otion/package.json index dd639e5..ba4d8c6 100644 --- a/packages/gatsby-plugin-otion/package.json +++ b/packages/gatsby-plugin-otion/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-otion", - "version": "0.4.0", + "version": "0.5.0", "description": "Gatsby plugin for otion, the atomic CSS-in-JS library", "keywords": [ "gatsby", diff --git a/packages/otion/CHANGELOG.md b/packages/otion/CHANGELOG.md index 3d61bab..9198c7c 100644 --- a/packages/otion/CHANGELOG.md +++ b/packages/otion/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +### Features + +- conditional rule precedence management ([7ecaaa2](https://github.com/kripod/otion/commit/7ecaaa2fe29834d1397f59566c7b422e3b454614)) + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) ### Bug Fixes diff --git a/packages/otion/package.json b/packages/otion/package.json index a22067f..09590e2 100644 --- a/packages/otion/package.json +++ b/packages/otion/package.json @@ -1,6 +1,6 @@ { "name": "otion", - "version": "0.4.0", + "version": "0.5.0", "description": "Atomic CSS-in-JS with a featherweight runtime", "keywords": [ "css-in-js", diff --git a/packages/react-otion/CHANGELOG.md b/packages/react-otion/CHANGELOG.md index 71a3b3a..389cb0c 100644 --- a/packages/react-otion/CHANGELOG.md +++ b/packages/react-otion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/kripod/otion/compare/v0.4.0...v0.5.0) (2020-07-23) + +**Note:** Version bump only for package react-otion + # [0.4.0](https://github.com/kripod/otion/compare/v0.3.4...v0.4.0) (2020-07-22) **Note:** Version bump only for package react-otion diff --git a/packages/react-otion/package.json b/packages/react-otion/package.json index d4f3b54..02109be 100644 --- a/packages/react-otion/package.json +++ b/packages/react-otion/package.json @@ -1,6 +1,6 @@ { "name": "react-otion", - "version": "0.4.0", + "version": "0.5.0", "description": "React bindings for otion, the atomic CSS-in-JS library", "keywords": [ "css-in-js", @@ -29,7 +29,7 @@ "develop": "yarn build --watch" }, "devDependencies": { - "otion": "^0.4.0", + "otion": "^0.5.0", "react": "^16.13.1" }, "peerDependencies": {