Skip to content

Commit

Permalink
Bump up version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamas Cseh committed Jan 9, 2021
1 parent b73d44b commit 3149b32
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [2.0.1] - 2021-01-09

### Fixed
- Update saved password on input value change

## [2.0.0] - 2021-01-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rf2-better-ui",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve --live-reload=false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class BetterUiComponent implements OnInit {
console.log('Better UI loaded');

const div: HTMLDivElement = document.createElement('div');
div.innerHTML = `<span style="position: absolute; bottom: 0; right: 0; z-index: 1; font-size: 10px">Better-UI v2.0.0</span>`;
div.innerHTML = `<span style="position: absolute; bottom: 0; right: 0; z-index: 1; font-size: 10px">Better-UI v2.0.1</span>`;
document.getElementsByTagName('body')[0].prepend(div);

this.applyHandlers();
Expand Down

0 comments on commit 3149b32

Please sign in to comment.