Skip to content

Commit b157c6b

Browse files
committed
bump version
1 parent 7c5c9db commit b157c6b

File tree

7 files changed

+52
-20
lines changed

7 files changed

+52
-20
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: sagiegurari
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
**Error Stack**
17+
```console
18+
The error stack trace
19+
```
20+
21+
**Code Sample**
22+
```js
23+
// paste code here
24+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: sagiegurari
7+
8+
---
9+
10+
**Features Description**
11+
A clear description of the feature request.
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Code Sample**
17+
```js
18+
// paste code here
19+
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
153153

154154
| Date | Version | Description |
155155
| ----------- | ------- | ----------- |
156-
| 2018-08-05 | v1.2.30 | Maintenance |
156+
| 2019-02-08 | v1.2.31 | Maintenance |
157157
| 2017-08-25 | v1.2.24 | Document support of service worker web notifications |
158158
| 2017-01-22 | v1.2.0 | Split the internal web notification API into a new project: simple-web-notification |
159159
| 2016-11-23 | v1.0.19 | Use forked version of html5-desktop-notifications in order to resolve few issues |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "1.2.30",
3+
"version": "1.2.31",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <sagiegurari@gmail.com>"

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3-
| 2018-08-05 | v1.2.30 | Maintenance |
3+
| 2019-02-08 | v1.2.31 | Maintenance |
44
| 2017-08-25 | v1.2.24 | Document support of service worker web notifications |
55
| 2017-01-22 | v1.2.0 | Split the internal web notification API into a new project: simple-web-notification |
66
| 2016-11-23 | v1.0.19 | Use forked version of html5-desktop-notifications in order to resolve few issues |

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "1.2.30",
3+
"version": "1.2.31",
44
"description": "AngularJS service for displaying web notifications.",
55
"author": {
66
"name": "Sagie Gur-Ari",
@@ -33,11 +33,14 @@
3333
"format": "grunt format",
3434
"build": "grunt build",
3535
"jstest": "grunt jstest",
36-
"debug": "mocha --debug-brk=5858 --no-timeouts --ui bdd --reporter spec --recursive ./test/spec",
37-
"prepush": "npm run build",
3836
"postpublish": "grunt post-publish",
3937
"grunt": "grunt"
4038
},
39+
"husky": {
40+
"hooks": {
41+
"pre-push": "npm run build"
42+
}
43+
},
4144
"dependencies": {
4245
"simple-web-notification": "latest"
4346
},

0 commit comments

Comments
 (0)