diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a58ae18351..862b8704eaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0-rc.2](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.1...v0.9.0-rc.2) (2020-03-23) + + +### Bug Fixes + +* **ChartContainer - New:** data handling ([#363](https://github.com/SAP/ui5-webcomponents-react/issues/363)) ([fecef0d](https://github.com/SAP/ui5-webcomponents-react/commit/fecef0dcbed3c91187d03e95005cbdf6005aecf7)) +* **ObjectPage:** RTL support for Header ([#369](https://github.com/SAP/ui5-webcomponents-react/issues/369)) ([338b8b3](https://github.com/SAP/ui5-webcomponents-react/commit/338b8b35ab4f24cc1f0afa8f24b365ee62860d60)), closes [#366](https://github.com/SAP/ui5-webcomponents-react/issues/366) + + +### Features + +* **All Components:** Allow all HTML events to be passed ([#370](https://github.com/SAP/ui5-webcomponents-react/issues/370)) ([376f9c1](https://github.com/SAP/ui5-webcomponents-react/commit/376f9c1a2893f2c46dfff85583c7756f4b6651cc)) +* **Css-Variables:** Add link styles ([#367](https://github.com/SAP/ui5-webcomponents-react/issues/367)) ([7595cdd](https://github.com/SAP/ui5-webcomponents-react/commit/7595cdd0648ba1c9cb45ca76c77ae78a1403e073)) + + + + + # [0.9.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v0.8.7-rc.0...v0.9.0-rc.1) (2020-03-19) diff --git a/lerna.json b/lerna.json index 2243f9ff646..da96a75e2de 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.9.0-rc.1", + "version": "0.9.0-rc.2", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index 10737549548..442ff10529f 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0-rc.2](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.1...v0.9.0-rc.2) (2020-03-23) + + +### Features + +* **All Components:** Allow all HTML events to be passed ([#370](https://github.com/SAP/ui5-webcomponents-react/issues/370)) ([376f9c1](https://github.com/SAP/ui5-webcomponents-react/commit/376f9c1a2893f2c46dfff85583c7756f4b6651cc)) +* **Css-Variables:** Add link styles ([#367](https://github.com/SAP/ui5-webcomponents-react/issues/367)) ([7595cdd](https://github.com/SAP/ui5-webcomponents-react/commit/7595cdd0648ba1c9cb45ca76c77ae78a1403e073)) + + + + + # [0.9.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v0.8.7-rc.0...v0.9.0-rc.1) (2020-03-19) diff --git a/packages/base/package.json b/packages/base/package.json index ce14d567fc1..b2c80c534d3 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-base", - "version": "0.9.0-rc.1", + "version": "0.9.0-rc.2", "description": "Base for ui5-webcomponents-react", "main": "index.cjs.js", "module": "index.esm.js", diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index 571b9a46126..988e0c6b46f 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0-rc.2](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.1...v0.9.0-rc.2) (2020-03-23) + + +### Bug Fixes + +* **ChartContainer - New:** data handling ([#363](https://github.com/SAP/ui5-webcomponents-react/issues/363)) ([fecef0d](https://github.com/SAP/ui5-webcomponents-react/commit/fecef0dcbed3c91187d03e95005cbdf6005aecf7)) + + + + + # [0.9.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v0.8.7-rc.0...v0.9.0-rc.1) (2020-03-19) **Note:** Version bump only for package @ui5/webcomponents-react-charts diff --git a/packages/charts/package.json b/packages/charts/package.json index 72e2d2977b6..8de99ddf642 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-charts", - "version": "0.9.0-rc.1", + "version": "0.9.0-rc.2", "description": "Charts for ui5-webcomponents-react", "main": "index.cjs.js", "module": "index.esm.js", diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index 2bbbc7706a7..7dc2733859c 100644 --- a/packages/main/CHANGELOG.md +++ b/packages/main/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0-rc.2](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.1...v0.9.0-rc.2) (2020-03-23) + + +### Bug Fixes + +* **ObjectPage:** RTL support for Header ([#369](https://github.com/SAP/ui5-webcomponents-react/issues/369)) ([338b8b3](https://github.com/SAP/ui5-webcomponents-react/commit/338b8b35ab4f24cc1f0afa8f24b365ee62860d60)), closes [#366](https://github.com/SAP/ui5-webcomponents-react/issues/366) + + +### Features + +* **All Components:** Allow all HTML events to be passed ([#370](https://github.com/SAP/ui5-webcomponents-react/issues/370)) ([376f9c1](https://github.com/SAP/ui5-webcomponents-react/commit/376f9c1a2893f2c46dfff85583c7756f4b6651cc)) + + + + + # [0.9.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v0.8.7-rc.0...v0.9.0-rc.1) (2020-03-19) **Note:** Version bump only for package @ui5/webcomponents-react diff --git a/packages/main/package.json b/packages/main/package.json index 91f5ea37ed7..cc7dcaf5345 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react", - "version": "0.9.0-rc.1", + "version": "0.9.0-rc.2", "description": "React Wrapper for UI5 Web Components and additional components", "main": "index.cjs.js", "module": "index.esm.js", @@ -25,7 +25,7 @@ "@ui5/webcomponents": "1.0.0-rc.5", "@ui5/webcomponents-fiori": "1.0.0-rc.5", "@ui5/webcomponents-icons": "1.0.0-rc.5", - "@ui5/webcomponents-react-base": "^0.9.0-rc.1", + "@ui5/webcomponents-react-base": "^0.9.0-rc.2", "lodash.debounce": "^4.0.8", "react-content-loader": "^5.0.2", "react-jss": "10.0.4",