Skip to content

Commit

Permalink
Update versions to Meteor 3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jul 16, 2024
1 parent 282c242 commit 457d748
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Package.describe({
name: 'aldeed:collection2',
summary:
'Automatic validation of Meteor Mongo insert and update operations on the client and server',
version: '4.0.2',
version: '4.0.3',
documentation: '../../README.md',
git: 'https://github.com/aldeed/meteor-collection2.git'
});
Expand All @@ -16,14 +16,14 @@ Npm.depends({
});

Package.onUse(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0-rc.4']);
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.use('mongo');
api.imply('mongo');
api.use('minimongo');
api.use('ejson');
api.use('ecmascript');
api.use('raix:eventemitter@1.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0-beta300.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0-rc.300.10');

api.addFiles(['./collection2.js']);

Expand All @@ -34,7 +34,7 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0-rc.4']);
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.use([
'meteortesting:mocha@3.1.0-rc.1',
'aldeed:collection2@4.0.2'
Expand Down

0 comments on commit 457d748

Please sign in to comment.