Skip to content

Commit 87ad9e2

Browse files
committed
bump version
1 parent e25c103 commit 87ad9e2

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.
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
@@ -135,7 +135,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
135135

136136
| Date | Version | Description |
137137
| ----------- | ------- | ----------- |
138-
| 2018-08-05 | v1.1.6 | Maintenance |
138+
| 2019-02-08 | v1.1.7 | Maintenance |
139139
| 2018-02-12 | v1.1.2 | Add support for step validations using big.js for more accurate calculations |
140140
| 2018-02-01 | v1.0.38 | Link function of the provided service will only be called once to prevent memory leaks |
141141
| 2016-07-11 | v0.0.27 | Service can now provide min/max/step values and template values override service values |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-number-input",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"description": "AngularJS number input directive.",
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.1.6 | Maintenance |
3+
| 2019-02-08 | v1.1.7 | Maintenance |
44
| 2018-02-12 | v1.1.2 | Add support for step validations using big.js for more accurate calculations |
55
| 2018-02-01 | v1.0.38 | Link function of the provided service will only be called once to prevent memory leaks |
66
| 2016-07-11 | v0.0.27 | Service can now provide min/max/step values and template values override service values |

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-number-input",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"description": "AngularJS number input directive.",
55
"author": {
66
"name": "Sagie Gur-Ari",
@@ -34,11 +34,14 @@
3434
"format": "grunt format",
3535
"build": "grunt build",
3636
"jstest": "grunt jstest",
37-
"debug": "mocha --debug-brk=5858 --no-timeouts --ui bdd --reporter spec --recursive ./test/spec",
38-
"prepush": "npm run build",
3937
"postpublish": "grunt post-publish",
4038
"grunt": "grunt"
4139
},
40+
"husky": {
41+
"hooks": {
42+
"pre-push": "npm run build"
43+
}
44+
},
4245
"devDependencies": {
4346
"chai": "latest",
4447
"grunt": "latest",

0 commit comments

Comments
 (0)