diff --git a/README.md b/README.md index c5732bb..f94ca0d 100644 --- a/README.md +++ b/README.md @@ -507,6 +507,10 @@ Why not try [`meteor-logger`](https://github.com/lookback/meteor-logger)? :) ## Version history +- `0.7.6` + - Fix [#76](https://github.com/lookback/meteor-emails/issues/76) by finding the correct paths to email templates in unit and app test mode (fixed in [#78](https://github.com/lookback/meteor-emails/pull/78), thanks @thebarty !). + - Update example app to Meteor 1.4.2. + - Run package and app tests in CI. - `0.7.5` - Better support for Sass in 1.3+ Meteor apps: if you have `node-sass` from npm defined in your app's `package.json`, we'll try `require`'ing from there. This approach is recommended. Pre-1.4 apps can still use the existing `chrisbutler:node-sass` Meteor package. - Updated `html-to-text` dependency to 2.1.3. diff --git a/package.js b/package.js index c07edc4..6dae47a 100644 --- a/package.js +++ b/package.js @@ -4,7 +4,7 @@ var where = 'server'; Package.describe({ name: 'lookback:emails', summary: 'Send HTML emails with server side Blaze templates. Preview and debug in the browser.', - version: '0.7.5', + version: '0.7.6', git: 'https://github.com/lookback/meteor-emails.git' }); diff --git a/package.json b/package.json index 4c9575c..82c045a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lookback-emails", - "version": "0.7.5", + "version": "0.7.6", "description": "`lookback:emails` is a Meteor package that makes it easier to build, test and debug rich HTML emails.", "repository": { "type": "git",