Skip to content

Commit

Permalink
Published aldeed:schema-deny@4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed May 4, 2024
1 parent 17e2660 commit 9eb59ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 4.0.1

Updated to depend on `aldeed:collection2@4.0.1`

Updated to be compatible with Meteor 3.0-rc.0

## 4.0.0

Update to depend on `aldeed:collection2@4.0.0`
Expand Down
4 changes: 2 additions & 2 deletions package/deny/.versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aldeed:collection2@4.0.0
aldeed:schema-deny@4.0.0
aldeed:collection2@4.0.1
aldeed:schema-deny@4.0.1
aldeed:simple-schema@1.13.1
allow-deny@1.1.1
babel-compiler@7.10.5
Expand Down
6 changes: 3 additions & 3 deletions package/deny/package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: "aldeed:schema-deny",
summary: "Deny inserting or updating certain properties through schema options",
version: "4.0.0",
version: "4.0.1",
documentation: '../../README.md',
git: "https://github.com/aldeed/meteor-schema-deny.git"
});

Package.onUse(function(api) {
api.versionsFrom(['2.8.1', '3.0-beta.4']);
api.use('aldeed:collection2@4.0.0');
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.use('ecmascript');

Expand Down

0 comments on commit 9eb59ff

Please sign in to comment.