Skip to content

Commit a0c90a4

Browse files
committed
Merge branch 'release/0.3.7'
2 parents 443ea76 + 1474e1c commit a0c90a4

File tree

9 files changed

+350
-349
lines changed

9 files changed

+350
-349
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = function (grunt) {
4848
options: {
4949
thresholds: {
5050
'statements': 100,
51-
'branches': 98,
51+
'branches': 96.9,
5252
'lines': 100,
5353
'functions': 100
5454
},

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Angular bootstrap date & time picker version: 0.3.6
1+
# Angular bootstrap date & time picker version: 0.3.7
22
================================
33

44
Native AngularJS datetime picker directive styled by Twitter Bootstrap 3

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap-datetimepicker",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"description": "This directive allows you to add a datetime-picker to your form.",
55
"author": "https://github.com/dalelotts/angular-bootstrap-datetimepicker/graphs/contributors",
66
"license": "MIT",

gulpfile.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ gulp.task('complexity', function () {
2323
});
2424

2525
gulp.task('test', function (done) {
26-
karma.start({configFile: karmaConfig, singleRun: true}, done);
26+
karma.start({
27+
configFile: karmaConfig,
28+
singleRun: true,
29+
reporters: ['progress', 'coverage', 'threshold']
30+
}, done);
2731
});
2832

2933
gulp.task('tdd', function (done) {

karma.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ module.exports = function (config) {
2727
'karma-chrome-launcher',
2828
'karma-firefox-launcher',
2929
'karma-phantomjs-launcher',
30-
'karma-coverage'
31-
// 'karma-threshold-reporter'
30+
'karma-coverage',
31+
'karma-threshold-reporter'
3232
],
3333

3434
files: paths.all,
@@ -56,7 +56,7 @@ module.exports = function (config) {
5656
// the configure thresholds
5757
thresholdReporter: {
5858
statements: 100,
59-
branches: 100,
59+
branches: 96.9,
6060
functions: 100,
6161
lines: 100
6262
},

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap-datetimepicker",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"description": "This directive allows you to add a datetime-picker to your form elements.",
55
"author": "https://github.com/dalelotts/ng-bootstrap-datetimepicker/graphs/contributors",
66
"bugs": {
@@ -27,9 +27,8 @@
2727
"karma-chrome-launcher": "^0.1.5",
2828
"karma-coverage": "^0.2.1",
2929
"karma-firefox-launcher": "^0.1.3",
30-
"karma-jasmine": "^0.2.3",
31-
"karma-phantomjs-launcher": "^0.1.2",
32-
"karma-threshold-reporter": "^0.1.9",
30+
"karma-jasmine": "^0.2.3", "karma-phantomjs-launcher": "^0.1.2",
31+
"karma-threshold-reporter": "^0.1.12",
3332
"matchdep": "^0.3.0",
3433
"phantomjs": "^1.9.12"
3534
},

src/css/datetimepicker.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license angular-bootstrap-datetimepicker version: 0.3.6
2+
* @license angular-bootstrap-datetimepicker version: 0.3.7
33
* (c) 2013-2014 Knight Rider Consulting, Inc. http://www.knightrider.com
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)