Skip to content

Commit c704af9

Browse files
committed
Bumped version to 1.0.2
1 parent 5354db2 commit c704af9

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
/.settings
33
/.project
44
node_modules
5-
old/
6-
tmp/
75
.tmp/
8-
*~
96
/nbproject
107
.idea
118
.grunt
12-
bower_components
9+
bower_components
10+
yarn.lock

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to `image-engine-angular` will be documented in this file
44

5+
## 1.0.2 - 2017-07-20
6+
7+
### Added
8+
- Crop (`cr`) parameter support
9+
- Compression (`cmpr`) parameter support
10+
- Inline (`in`) parameter support
11+
- Tests for AngularJS versions 1.6.x
12+
13+
### Deprecated
14+
- isLite() method
15+
16+
## 1.0.1 - 2016-03-09
17+
18+
### Added
19+
- Tests for AngularJS versions 1.5.x
20+
21+
### Updated
22+
- Dev dependencies
23+
24+
### Fixed
25+
- strict mode error: function(imgEngConfig) is not using explicit annotation and cannot be invoked in strict mode (#4)
26+
527
## 1.0.0 - 2015-11-16
628

729
### Changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "image-engine-angular",
33
"description": "An AngularJS directive for ImageEngine",
44
"homepage": "https://github.com/WURFL/ImageEngine-angular",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"main": "./src/image-engine-angular.js",
77
"authors": [
88
"Luca Corbo (https://github.com/lucor)"

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
{
22
"name": "image-engine-angular",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "An AngularJS directive for ImageEngine",
55
"homepage": "https://github.com/WURFL/ImageEngine-angular",
66
"author": "Luca Corbo (https://github.com/lucor)",
77
"maintainers": [
88
"Luca Corbo (https://github.com/lucor)"
99
],
10-
"contributors": [
11-
"Luca Corbo (https://github.com/lucor)"
12-
],
1310
"license": "MIT",
1411
"bugs": {
1512
"url": "https://github.com/WURFL/ImageEngine-angular/issues"
@@ -24,6 +21,9 @@
2421
"ImageEngine",
2522
"webcomponent"
2623
],
24+
"dependencies": {
25+
"angular": "^1.2.0"
26+
},
2727
"devDependencies": {
2828
"chai": "^4.1.0",
2929
"gulp": "^3.9.1",
@@ -37,7 +37,6 @@
3737
"phantomjs-prebuilt": "^2.1.3"
3838
},
3939
"scripts": {
40-
"postinstall": "bower install",
4140
"prestart": "npm install",
4241
"start": "http-server -p 9999",
4342
"pretest": "npm install",

0 commit comments

Comments
 (0)