Skip to content

Commit 96313a1

Browse files
Update api.versionsFrom() adding 3.0-alpha.19 to support Meteor 3.0-alpha.
1 parent b9ee06e commit 96313a1

File tree

3 files changed

+55
-10
lines changed

3 files changed

+55
-10
lines changed
+49-8

packages/react-meteor-accounts/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Release versions follow [Semantic Versioning 2.0.0 guidelines](https://semver.org/).
44

5+
## v1.0.2
6+
7+
Update api.versionsFrom() adding `3.0-alpha.19` to support Meteor 3.0-alpha.
8+
59
## v1.0.1
610

711
Bump `.versions` dependencies to match `react-meteor-data` dependencies.

packages/react-meteor-accounts/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
Package.describe({
44
name: 'react-meteor-accounts',
55
summary: 'React hooks and HOCs for reactively tracking Meteor Accounts data',
6-
version: '1.0.1',
6+
version: '1.0.2',
77
documentation: 'README.md',
88
git: 'https://github.com/meteor/react-packages',
99
});
1010

1111
Package.onUse((api) => {
12-
api.versionsFrom(['1.10', '2.3']);
12+
api.versionsFrom(['1.10', '2.3', '3.0-alpha.19']);
1313

1414
api.use(['accounts-base', 'tracker', 'typescript']);
1515

0 commit comments

Comments
 (0)