diff --git a/README.md b/README.md index 4d15b1b..cc2ef04 100755 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ Based on https://github.com/stubailo/meteor-rest/blob/devel/packages/rest/http-s ## Releases +- `1.0.3` - Fix compatibility with `peerlibrary:reactive-publish` package (bug #3), fixed in [#10](https://github.com/johanbrook/meteor-publication-collector/pull/10). Thanks [@hexsprite](https://github.com/hexsprite)! - `1.0.2` - Fix bug where `ready()` wasn't called if there were no results from a publication handler. - `1.0.1` - Fixes inconsistent results from publication collector (thanks @PhilippSpo in [#2](https://github.com/johanbrook/meteor-publication-collector/issues/2)). @@ -64,6 +65,6 @@ Based on https://github.com/stubailo/meteor-rest/blob/devel/packages/rest/http-s ## To do -- [ ] Make tests pass. +- [x] Make tests pass. - [ ] More docs. - [ ] Support Promises. diff --git a/package.js b/package.js index 7710de4..b7bea8b 100755 --- a/package.js +++ b/package.js @@ -2,7 +2,7 @@ Package.describe({ name: 'johanbrook:publication-collector', - version: '1.0.2', + version: '1.0.3', summary: 'Test a Meteor publication by collecting its output.', documentation: 'README.md', git: 'https://github.com/johanbrook/meteor-publication-collector.git', diff --git a/package.json b/package.json index ff7cfe7..7993144 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "publication-collector", - "version": "1.0.2", + "version": "1.0.3", "description": "Test a Meteor publication by collecting its output.", "scripts": { "test": "SERVER_TEST_REPORTER='dot' meteor test-packages --release 1.3.5.1 --once --driver-package dispatch:mocha ./",