Merge branch 'devel' into update-meteor-babel

This commit is contained in:
Jan Dvorak
2021-05-08 20:55:57 +09:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,8 @@
* Released `mongo@1.11.1` fixing a `Timestamp.ONE is undefined` bug.
* Released `mongo-id@1.0.8` removing unused dependency `id-map`.
## v2.2, 2021-04-15
#### Highlights

View File

@@ -1,11 +1,11 @@
Package.describe({
summary: 'JS simulation of MongoDB ObjectIDs',
version: '1.0.7',
version: '1.0.8',
documentation: null
});
Package.onUse(function (api) {
api.export('MongoID');
api.use(['ejson', 'id-map', 'random', 'ecmascript']);
api.use(['ejson', 'random', 'ecmascript']);
api.mainModule('id.js');
});