Skip to content

Commit

Permalink
Update to 3.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed May 4, 2024
1 parent 6641d76 commit 3265067
Show file tree
Hide file tree
Showing 3 changed files with 10 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 @@ -12,9 +12,9 @@ jobs:
strategy:
matrix:
meteorRelease:
- '--release 2.3'
- '--release 2.8.1'
- '--release 2.12'
- '--release 2.14'
- '--release 3.0-rc.0'
# Latest version
steps:
- name: Checkout code
Expand Down
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.4.0
* Test suite minimum Meteor version is 2.12 to support new counts and to be fully compatible with Meteor 3
* Meteor `3.0-beta.0` is now a supported version, but not functionality wise (need to upgrade `count` functions in tests)

## v1.3.1
* Updated zodern:types to v1.0.10
* Meteor `3.0-beta.0` is now a supported version, but not functionality wise (need to upgrade `count` functions in code)
Expand Down
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Package.describe({
name: 'matb33:collection-hooks',
summary: 'Extends Mongo.Collection with before/after hooks for insert/update/upsert/remove/find/findOne',
version: '1.3.1',
version: '1.4.0-beta.1',
git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks'
})

Package.onUse(function (api) {
api.versionsFrom(['2.3', '2.8.1', '3.0-beta.0'])
api.versionsFrom(['2.3', '2.8.1', '2.12', '3.0-rc.0'])

api.use([
'mongo@2.0.0-beta300.0',
'mongo',
'tracker',
'ejson',
'minimongo',
Expand All @@ -31,7 +31,7 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
// var isTravisCI = process && process.env && process.env.TRAVIS

api.versionsFrom(['1.12', '2.3', '3.0-beta.0'])
api.versionsFrom(['2.12', '3.0-rc.0'])

api.use([
'matb33:collection-hooks',
Expand Down

0 comments on commit 3265067

Please sign in to comment.