Skip to content
This repository was archived by the owner on Oct 1, 2023. It is now read-only.

Commit 970d690

Browse files
committed
chore(*): release 0.4.0
1 parent c588166 commit 970d690

File tree

6 files changed

+34
-31
lines changed

6 files changed

+34
-31
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ trim_trailing_whitespace = false
2121

2222
[{bower.json,package.json}]
2323
indent_style = space
24-
indent_size = 4
24+
indent_size = 2

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.4.0 - 2015-10-22
4+
- Make sure onreadystatechange callback is only fired when file is fully loaded ([#23](https://github.com/urish/angular-load/pull/23), contributed by [davidchin](https://github.com/davidchin))
5+
36
## 0.3.0 - 2015-08-08
47
- Only load items once ([#10](https://github.com/urish/angular-load/pull/10), contributed by [dougmoscrop](https://github.com/dougmoscrop))
58

angular-load.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* angular-load.js / v0.3.0 / (c) 2014, 2015 Uri Shaked / MIT Licence */
1+
/* angular-load.js / v0.4.0 / (c) 2014, 2015 Uri Shaked / MIT Licence */
22

33
(function () {
44
'use strict';

angular-load.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"homepage": "http://github.com/urish/angular-load",
77
"main": "./angular-load.js",
88
"dependencies": {
9-
"angular": ">=1.0.0 <1.5.0"
9+
"angular": ">=1.0.0 <1.6.0"
1010
},
1111
"devDependencies": {
1212
"angular-mocks": "1.4.x"

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
2-
"name": "angular-load",
3-
"main": "angular-load.js",
4-
"version": "0.3.0",
5-
"repository": {
6-
"type": "git",
7-
"url": "http://github.com/urish/angular-load.git"
8-
},
9-
"dependencies": {},
10-
"devDependencies": {
11-
"matchdep": "~0.3.0",
12-
"grunt": "~0.4.1",
13-
"grunt-contrib-uglify": "~0.5.1",
14-
"grunt-contrib-jshint": "~0.10.0",
15-
"grunt-karma": "~0.8.2",
16-
"karma": "~0.12.1",
17-
"karma-coverage": "~0.2.0",
18-
"karma-jasmine": "~0.2.1",
19-
"karma-phantomjs-launcher": "~0.1.1",
20-
"coveralls": "~2.11.0"
21-
},
22-
"engines": {
23-
"node": ">=0.10.0"
24-
},
25-
"scripts": {
26-
"test": "grunt test",
27-
"build": "grunt build"
28-
}
2+
"name": "angular-load",
3+
"main": "angular-load.js",
4+
"version": "0.4.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "http://github.com/urish/angular-load.git"
8+
},
9+
"dependencies": {},
10+
"devDependencies": {
11+
"matchdep": "~0.3.0",
12+
"grunt": "~0.4.1",
13+
"grunt-contrib-uglify": "~0.5.1",
14+
"grunt-contrib-jshint": "~0.10.0",
15+
"grunt-karma": "~0.8.2",
16+
"karma": "~0.12.1",
17+
"karma-coverage": "~0.2.0",
18+
"karma-jasmine": "~0.2.1",
19+
"karma-phantomjs-launcher": "~0.1.1",
20+
"coveralls": "~2.11.0"
21+
},
22+
"engines": {
23+
"node": ">=0.10.0"
24+
},
25+
"scripts": {
26+
"test": "grunt test",
27+
"build": "grunt build"
28+
}
2929
}

0 commit comments

Comments
 (0)