-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c41adf1
commit 65d78b1
Showing
3 changed files
with
57 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Change Log | ||
|
||
## 3.1.0 | ||
|
||
Update dependencies (`aldeed:[email protected]`, `ecmascript` according to Meteor version) | ||
Index creation and dropping has been updated to use newer API if available | ||
|
||
## 3.0.0 | ||
|
||
Updated to depend on `aldeed:[email protected]` rather than `aldeed:collection2-core`. Core has been merged back into the main package as a 3.0.0 release. | ||
|
@@ -26,4 +31,4 @@ Update to work with SimpleSchema 2.0 | |
|
||
## 1.0.0 | ||
|
||
Initial release. Originally included in the aldeed:collection2 package. | ||
Initial release. Originally included in the aldeed:collection2 package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Package.describe({ | ||
name: "aldeed:schema-index", | ||
summary: "Control some MongoDB indexing with schema options", | ||
version: "3.0.0", | ||
version: "3.1.0", | ||
documentation: "../../README.md", | ||
git: "https://github.com/aldeed/meteor-schema-index.git", | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
api.use(["aldeed:[email protected]", "[email protected]"]); | ||
api.versionsFrom(["1.12.1", "2.3.6", "2.8.1"]); | ||
api.use("ecmascript"); | ||
api.use("aldeed:[email protected]"); | ||
|
||
api.mainModule("client.js", "client"); | ||
api.mainModule("server.js", "server"); | ||
|