diff --git a/Assets/UIComponents/package.json b/Assets/UIComponents/package.json index 64acb3d7..2b00c76e 100644 --- a/Assets/UIComponents/package.json +++ b/Assets/UIComponents/package.json @@ -1,7 +1,7 @@ { "name": "io.savolainen.uicomponents", "displayName": "UIComponents", - "version": "0.9.0", + "version": "0.10.0", "description": "A small front-end framework for Unity's UIToolkit.", "unity": "2019.3", "author": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f4e533f..64abda53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ +# [0.10.0](https://github.com/jonisavo/uicomponents/compare/v0.9.0...v0.10.0) (2022-06-03) + + +### Features + +* **StylesheetAttribute:** apply stylesheets from parents upward ([a27f75e](https://github.com/jonisavo/uicomponents/commit/a27f75e9db84e11d3107e597b2e4abd65a7d0a52)) + + +### BREAKING CHANGES + +* **StylesheetAttribute:** Stylesheets defined in parent classes are now loaded first. This means that child classes can override styles from their parents. + # [0.9.0](https://github.com/jonisavo/uicomponents/compare/v0.8.0...v0.9.0) (2022-05-27) diff --git a/README.md b/README.md index 290e88a4..38b818c0 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file: } ], "dependencies": { - "io.savolainen.uicomponents": "0.9.0" + "io.savolainen.uicomponents": "0.10.0" } } ``` @@ -96,12 +96,12 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file: Add this under `dependencies` in your `Packages/manifest.json` file: ``` -"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v0.9.0" +"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v0.10.0" ``` -This will install version 0.9.0. +This will install version 0.10.0. -To update, change `upm/v0.9.0` to point to the latest version. +To update, change `upm/v0.10.0` to point to the latest version. ## Layouts and stylesheets