diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 186e541c..894bc956 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,14 +7,14 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - meteor: [1.12.2, 2.6.1, 2.7.3, 2.8.1, 2.12] + meteor: [1.12.2, 2.8.1, 2.13, 2.15] redis-version: [4, 5, 6, 7] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Start Redis - uses: supercharge/redis-github-action@1.5.0 + uses: supercharge/redis-github-action@1.8.0 with: redis-version: ${{ matrix.redis-version }} diff --git a/package.js b/package.js index 0205473b..48bebfa5 100644 --- a/package.js +++ b/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'cultofcoders:redis-oplog', - version: '2.2.1', + version: '2.2.2', // Brief, one-line summary of the package. summary: "Replacement for Meteor's MongoDB oplog implementation", // URL to the Git repository containing the source code for this package. @@ -17,7 +17,7 @@ Npm.depends({ }); Package.onUse(function(api) { - api.versionsFrom(['1.12.2', '2.8.1', '2.12']); + api.versionsFrom(['1.12.2', '2.8.1', '2.13', '2.15']); api.use([ 'underscore', 'ecmascript',