Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Agranom committed Sep 15, 2018
1 parent c21d3f7 commit 666813e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## 2.6.0 (2018-09-15)

### Features

* feat(ngx-material-timepicker-component): add closed output, that fires after timepicker was closed

### Fixes

* fix(timepicker clock face): reset time after cancelation timepicker [(3398591)](https://github.com/Agranom/ngx-material-timepicker/commit/3398591a5355aa1e30180c7b4f30ce5be9e5c5ce), closes [(#35)](https://github.com/Agranom/ngx-material-timepicker/issues/35)
* fix(timepicker clock hand): set different sizes for portrait and landscape orientations [(429ddfd)](https://github.com/Agranom/ngx-material-timepicker/commit/429ddfd06992eb4e3ea1bc2aea9caa653d48df59)

## 2.5.4 (2018-09-03)

### Fixes
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ Selector: `ngx-material-timepicker`
| @Input()
ESC: boolean | Disable or enable closing timepicker by ESC. |
| @Output()
timeSet: EventEmitter<string> | Emits time when that was set. |
timeSet: EventEmitter\<string\> | Emits time when that was set. |
| @Output()
closed: EventEmitter\<null\> | Emits after timepicker was closed. |

**NgxMaterialTimepickerToggleComponent**

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-material-timepicker",
"description": "Handy material design timepicker for angular",
"version": "2.5.4",
"version": "2.6.0",
"license": "MIT",
"author": "Vitalii Boiko <boyko330@gmail.com>",
"keywords": [
Expand All @@ -10,6 +10,7 @@
"angular 4",
"angular 5",
"angular 6",
"angular 7",
"material design",
"timepicker",
"material timepicker",
Expand All @@ -32,7 +33,6 @@
"e2e": "ng e2e",
"packagr": "ng-packagr -p ng-package.json",
"publish": "run-s packagr && npm publish dist",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"gh-publish": "ng build --prod --base-href ngx-material-timepicker && gh-pages -d dist"
},
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ <h3 class="ngx-material-timepicker-examples__title">Examples</h3>
</main>
<footer class="footer">
<div class="container">
<p class="footer__version">Current version 2.5.4</p>
<p class="footer__version">Current version 2.6.0</p>
</div>
</footer>
</div>

0 comments on commit 666813e

Please sign in to comment.