Skip to content

Commit

Permalink
Prep 1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Sep 23, 2023
1 parent 90945b6 commit b3589ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
matrix:
meteorRelease:
- '--release 2.3'
- '--release 2.7.3'
- '--release 2.9.0'
- '--release 2.8.1'
- '--release 2.13.3'
# Latest version
steps:
- name: Checkout code
Expand Down
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.3.0
* Add direct async methods [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/300) [@alisnic](https://github.com/alisnic)
* Add support for async collection methods [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/299) [@jdgjsag67251](https://github.com/jdgjsag67251)
* Added additional Meteor version targets for Meteor `2.8.1` and `3.0-alpha.15` [@storytellercz](https://github.com/sponsors/StorytellerCZ)
* Updated tests targets to Meteor `2.8.1` and `2.13.3` [@storytellercz](https://github.com/sponsors/StorytellerCZ)

## v1.2.2
* Fixed [issue](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/issues/296) where after update did not use direct find [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/297) [@jdgjsag67251](https://github.com/jdgjsag67251)

Expand Down
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

Package.describe({
name: 'matb33:collection-hooks',
summary: 'Extends Mongo.Collection with before/after hooks for insert/update/remove/find/findOne',
version: '1.2.2',
summary: 'Extends Mongo.Collection with before/after hooks for insert/update/upsert/remove/find/findOne',
version: '1.3',
git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks'
})

Package.onUse(function (api, where) {
api.versionsFrom(['2.3'])
Package.onUse(function (api) {
api.versionsFrom(['2.3', '2.8.1', '3.0-alpha.15'])

api.use([
'mongo',
Expand Down

0 comments on commit b3589ad

Please sign in to comment.