Skip to content

Commit e96e8f8

Browse files
committed
v2.1.0
- Compatibility with `[email protected]` and `ostrio:[email protected]` - Fix: #41 , thanks to @balazsbencs-attrecto - Overall codebase enhancement and fixes
1 parent cca908f commit e96e8f8

File tree

2 files changed

+50
-45
lines changed

2 files changed

+50
-45
lines changed

.versions

Lines changed: 45 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,67 @@
1-
aldeed:autoform@6.2.0
2-
allow-deny@1.0.9
3-
babel-compiler@6.20.0
4-
babel-runtime@1.0.1
1+
aldeed:autoform@6.3.0
2+
allow-deny@1.1.0
3+
babel-compiler@7.0.5
4+
babel-runtime@1.2.0
55
66
77
88
9-
boilerplate-generator@1.2.0
9+
boilerplate-generator@1.4.0
1010
11-
caching-html-compiler@1.0.6
12-
callback-hook@1.0.10
13-
check@1.2.5
14-
ddp@1.3.1
15-
ddp-client@2.1.3
16-
ddp-common@1.2.9
17-
ddp-server@2.0.2
11+
caching-html-compiler@1.1.2
12+
callback-hook@1.1.0
13+
check@1.3.0
14+
ddp@1.4.0
15+
ddp-client@2.3.1
16+
ddp-common@1.4.0
17+
ddp-server@2.1.2
1818
19-
20-
21-
22-
23-
24-
19+
20+
21+
22+
23+
24+
25+
2526
2627
2728
28-
http@1.2.12
29-
id-map@1.0.9
29+
http@1.4.0
30+
id-map@1.1.0
3031
3132
32-
33-
meteor@1.7.2
34-
minimongo@1.3.2
35-
modules@0.10.0
36-
modules-runtime@0.8.0
33+
34+
meteor@1.8.2
35+
minimongo@1.4.3
36+
modules@0.11.3
37+
modules-runtime@0.9.1
3738
38-
mongo@1.2.2
39-
mongo-dev-server@1.0.1
39+
mongo@1.4.2
40+
mongo-dev-server@1.1.0
4041
41-
42+
4243
43-
ordered-dict@1.0.9
44-
ostrio:autoform-files@2.0.4
45-
46-
47-
promise@0.9.0
48-
random@1.0.10
49-
reactive-dict@1.1.9
44+
ordered-dict@1.1.0
45+
ostrio:autoform-files@2.1.0
46+
47+
48+
promise@0.10.1
49+
random@1.1.0
50+
reactive-dict@1.2.0
5051
51-
52+
53+
5254
55+
5356
5457
55-
56-
58+
59+
60+
61+
5762
5863
5964
60-
url@1.1.0
61-
webapp@1.3.19
65+
url@1.2.0
66+
webapp@1.5.0
6267

package.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ Package.describe({
22
name: 'ostrio:autoform-files',
33
summary: 'File upload for AutoForm using ostrio:files',
44
description: 'File upload for AutoForm using ostrio:files',
5-
version: '2.0.4',
5+
version: '2.1.0',
66
git: 'https://github.com/VeliovGroup/meteor-autoform-file.git'
77
});
88

99
Package.onUse(function(api) {
10-
api.versionsFrom('METEOR@1.4');
10+
api.versionsFrom('METEOR@1.6.1');
1111

1212
api.use([
1313
'check',
1414
'ecmascript',
1515
'underscore',
1616
'mongo',
1717
'reactive-var',
18-
'templating',
19-
'aldeed:autoform@6.2.0',
20-
'ostrio:[email protected].0'
18+
'templating@1.3.2',
19+
'aldeed:autoform@6.3.0',
20+
'ostrio:[email protected].8'
2121
]);
2222

2323
api.addFiles([

0 commit comments

Comments
 (0)