Skip to content

Commit 4b2c191

Browse files
committed
Released 1.3.0 🚀
1 parent 049efa8 commit 4b2c191

File tree

4 files changed

+73
-58
lines changed

4 files changed

+73
-58
lines changed

.versions

+62-57
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,72 @@
1-
aldeed:simple-schema@1.4.0
2-
allow-deny@1.0.3
3-
autoupdate@1.2.7
4-
babel-compiler@6.6.1
5-
babel-runtime@0.1.7
6-
7-
1+
aldeed:simple-schema@1.5.4
2+
allow-deny@1.1.1
3+
autoupdate@1.8.0
4+
babel-compiler@7.10.3
5+
babel-runtime@1.5.1
6+
7+
88
9-
10-
boilerplate-generator@1.0.7
11-
caching-compiler@1.0.3
9+
10+
boilerplate-generator@1.7.1
11+
caching-compiler@1.2.2
1212
13-
callback-hook@1.0.7
14-
check@1.1.3
13+
callback-hook@1.5.0
14+
check@1.3.2
1515
16-
17-
18-
19-
20-
21-
22-
23-
24-
25-
26-
27-
28-
29-
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
3034
31-
local-test:mdg:[email protected]
32-
33-
34-
35-
36-
37-
38-
39-
40-
41-
42-
35+
local-test:mdg:[email protected]
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
4349
44-
ordered-dict@1.0.6
50+
ordered-dict@1.1.0
4551
practicalmeteor:[email protected]_1
4652
practicalmeteor:[email protected]_2
47-
practicalmeteor:mocha@2.1.0_5
48-
practicalmeteor:[email protected].3
53+
practicalmeteor:mocha@2.4.5_6
54+
practicalmeteor:mocha-core@1.0.1
4955
practicalmeteor:[email protected]_2
50-
promise@0.6.6
51-
random@1.0.8
52-
53-
54-
reload@1.1.7
55-
retry@1.0.6
56-
routepolicy@1.0.9
57-
56+
promise@0.12.2
57+
random@1.2.1
58+
59+
60+
reload@1.3.1
61+
retry@1.1.0
62+
routepolicy@1.1.1
63+
5864
59-
spacebars-compiler@1.0.10
65+
spacebars-compiler@1.1.0
6066
61-
62-
63-
64-
65-
66-
67-
67+
68+
69+
70+
71+
72+

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change log
22

3+
## 1.3.0
4+
5+
- Added `callAsync` as the counter part for `Meteor.callAsync`
6+
more can be seen in the [PR](https://github.com/meteor/validated-method/pull/92)
7+
38
## 1.2.0
49

510
- Remove underscore and modernize

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ const method = new ValidatedMethod({
1414

1515
// Method call
1616
method.call({ arg1, arg2 });
17+
18+
// Method callAsync added in 1.3.0
19+
method.callAsync({ arg1, arg2 });
20+
// ˆˆˆˆˆ not callback based, returns a Promise.
21+
1722
```
1823

1924
This is a simple wrapper package for `Meteor.methods`. The need for such a package came

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'mdg:validated-method',
33
summary: 'A simple wrapper for Meteor.methods',
4-
version: '1.2.0',
4+
version: '1.3.0',
55
documentation: 'README.md',
66
});
77

0 commit comments

Comments
 (0)