Skip to content

Commit

Permalink
chore(release): v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonisavo committed May 5, 2022
1 parent 51a248b commit 1b5f0b8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Assets/UIComponents/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "io.savolainen.uicomponents",
"displayName": "UIComponents",
"version": "0.4.0",
"version": "0.5.0",
"description": "A small front-end framework for Unity's UIElements.",
"unity": "2019.3",
"author": {
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@


# [0.5.0](https://github.com/jonisavo/uicomponents/compare/v0.4.0...v0.5.0) (2022-05-05)


* feat(UIComponent)!: make GetLayout and GetStyleSheets private ([4251611](https://github.com/jonisavo/uicomponents/commit/42516118aa3ff9d530cb8bad13f0ccf96c8a2bb3))


### Features

* add Addressables support ([#7](https://github.com/jonisavo/uicomponents/issues/7)) ([6abab8c](https://github.com/jonisavo/uicomponents/commit/6abab8cdb46b73f4c944098a7fd9aad94900668b))


### BREAKING CHANGES

* UIComponent's GetLayout and GetStyleSheets functions are no longer protected and virtual. Since they are called in UIComponent's constructor, derived classes would not have been fully initialized when the overridden functions are called.

# [0.4.0](https://github.com/jonisavo/uicomponents/compare/v0.3.0...v0.4.0) (2022-05-03)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Alternatively, merge this snippet to your `Packages/manifest.json` file:
}
],
"dependencies": {
"io.savolainen.uicomponents": "0.4.0"
"io.savolainen.uicomponents": "0.5.0"
}
}
```
Expand All @@ -94,12 +94,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.4.0"
"io.savolainen.uicomponents": "https://github.com/jonisavo/uicomponents.git#upm/v0.5.0"
```

This will install version 0.4.0.
This will install version 0.5.0.

To update, change `upm/v0.4.0` to point to the latest version.
To update, change `upm/v0.5.0` to point to the latest version.

## Layouts and stylesheets

Expand Down

0 comments on commit 1b5f0b8

Please sign in to comment.