Skip to content

Commit

Permalink
Fix #246 & update relevant docs for 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Oct 8, 2019
1 parent 07c1ca3 commit eb5226d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.9.1
* Fixed selector not being able to be modified when String or MongoID is used
* Add `npm prune --production` to publication script to prevent addition of dev only packages to the bundle. Fixes issue [#246](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/issues/246)

## v0.9.0

* BREAKING CHANGE: Minimum required Meteor version is now 1.6.1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,3 +358,4 @@ Maintained by [Meteor Community Packages](https://github.com/Meteor-Community-Pa
- Pierre Ozoux ([pierreozoux](https://github.com/pierreozoux))
- Tom Coleman ([tmeasday](https://github.com/tmeasday))
- Eric Jackson ([repjackson](https://github.com/repjackson))
- Koen Lav ([KoenLav](https://github.com/KoenLav))
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Package.describe({
name: 'matb33:collection-hooks',
summary: 'Extends Mongo.Collection with before/after hooks for insert/update/remove/find/findOne',
version: '0.9.0',
version: '0.9.1',
git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks'
})

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "meteor-collection-hooks",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"scripts": {
"start": "meteor test-packages ./",
"start-1_4_beta_14": "meteor test-packages ./ --release 1.4-beta.14",
"tools:lint": "./node_modules/eslint/bin/eslint.js *.js tests",
"tools:lintfix": "./node_modules/eslint/bin/eslint.js *.js tests --fix",
"publish": "meteor publish",
"publish": "npm prune --production && meteor publish",
"test": "spacejam test-packages ./"
},
"description": "Extends Mongo.Collection with before/after hooks for insert/update/remove/find/findOne",
Expand Down

0 comments on commit eb5226d

Please sign in to comment.