Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Dec 19, 2024
1 parent 9eb59ff commit d793f1e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 4.0.2

Updated dependencies for `aldeed:collection2@4.0.4`

Added compatibility for `aldeed:simple-schema@2.0.0`

Api versions from now include Meteor `3.0.1` and `3.1`

## 4.0.1

Updated to depend on `aldeed:collection2@4.0.1`
Expand Down
8 changes: 4 additions & 4 deletions package/deny/package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Package.describe({
name: "aldeed:schema-deny",
summary: "Deny inserting or updating certain properties through schema options",
version: "4.0.1",
version: "4.0.2",
documentation: '../../README.md',
git: "https://github.com/aldeed/meteor-schema-deny.git"
});

Package.onUse(function(api) {
api.versionsFrom(['2.8.1', '3.0-rc.0']);
api.use('aldeed:collection2@4.0.1');
api.use('aldeed:simple-schema@1.13.1');
api.versionsFrom(['2.8.1', '3.0.1', '3.1']);
api.use('aldeed:collection2@4.0.4');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0');
api.use('ecmascript');

api.mainModule('deny.js');
Expand Down

0 comments on commit d793f1e

Please sign in to comment.