Skip to content

Commit d1d74db

Browse files
author
Sashko Stubailo
committed
Publish 1.0.2 with relaxed version constraint
Fixes #42
1 parent 28c8ea6 commit d1d74db

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ [email protected]
2727
2828
2929
30-
local-test:mdg:[email protected].1
30+
local-test:mdg:[email protected].2
3131
32-
32+
3333
3434
3535

CHANGELOG.md

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

3+
## 1.0.2
4+
5+
- Relax `versionsFrom` constraint so that it works with 1.3 beta 16. [#42](https://github.com/meteor/validated-method/issues/42)
6+
37
## 1.0.1
48

59
- Added error handling when a mixin doesn't return any options, thanks to [PR #24](https://github.com/meteor/validated-method/pull/24).

package.js

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

88
Package.onUse(function (api) {
9-
api.versionsFrom('1.2.1');
9+
api.versionsFrom('1.2');
1010

1111
api.use([
1212
'ecmascript',

0 commit comments

Comments
 (0)