Skip to content

Commit

Permalink
Publish 0.2.2 which fixes #1
Browse files Browse the repository at this point in the history
Fix #1 (Red text error message when adding password account) when using
`useraccounts:flow-routing`. This fix was implemented in
`brettle:accounts-patch-ui` version 0.1.6, which this package now depends upon.
  • Loading branch information
brettle committed Dec 14, 2015
1 parent d018dd6 commit f453429
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 30 deletions.
42 changes: 20 additions & 22 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,68 +1,66 @@
accounts-base@1.2.1
accounts-base@1.2.2
babel-compiler@5.8.24_1
babel-runtime@0.1.4
base64@1.0.4
binary-heap@1.0.4
blaze@2.1.3
blaze-tools@1.0.4
boilerplate-generator@1.0.4
brettle:accounts-add-service@0.3.3
brettle:accounts-add-service@1.0.0
brettle:accounts-anonymous@0.3.1
brettle:accounts-anonymous-auto@0.3.5
brettle:accounts-deluxe@0.2.1
brettle:accounts-login-state@0.0.3
brettle:accounts-deluxe@0.2.2
brettle:accounts-login-state@0.0.4
brettle:accounts-logout-to-switch@0.4.2
brettle:accounts-multiple@0.3.1
brettle:accounts-patch-ui@0.1.1
brettle:accounts-testing-support@0.4.2
brettle:accounts-patch-ui@0.1.6
brettle:workaround-issue-4331@0.0.4
brettle:workaround-issue-4862@0.0.3
brettle:workaround-issue-4970@0.0.4
brettle:workaround-issue-5110@0.0.2
caching-compiler@1.0.0
caching-html-compiler@1.0.1
caching-html-compiler@1.0.2
callback-hook@1.0.4
check@1.0.6
check@1.1.0
ddp@1.2.2
ddp-client@1.2.1
ddp-common@1.2.1
ddp-common@1.2.2
ddp-rate-limiter@1.0.0
ddp-server@1.2.1
ddp-server@1.2.2
deps@1.0.9
diff-sequence@1.0.1
ecmascript@0.1.4
ecmascript-collections@0.1.6
ecmascript@0.1.6
ecmascript-runtime@0.2.6
ejson@1.0.7
geojson-utils@1.0.4
html-tools@1.0.5
htmljs@1.0.5
id-map@1.0.4
jquery@1.11.4
local-test:brettle:accounts-deluxe@0.2.1
local-test:brettle:accounts-deluxe@0.2.2
localstorage@1.0.5
logging@1.0.8
meteor@1.1.7
meteor@1.1.10
minifiers@1.1.7
minimongo@1.0.9
mongo@1.1.1
minimongo@1.0.10
mongo@1.1.3
mongo-id@1.0.1
npm-mongo@1.4.39_1
observe-sequence@1.0.7
ordered-dict@1.0.4
promise@0.4.8
random@1.0.4
promise@0.5.1
random@1.0.5
rate-limit@1.0.0
reactive-var@1.0.6
retry@1.0.4
routepolicy@1.0.6
service-configuration@1.0.5
spacebars@1.0.7
spacebars-compiler@1.0.7
templating@1.1.3
templating@1.1.5
templating-tools@1.0.0
tinytest@1.0.6
tracker@1.0.8
tracker@1.0.9
ui@1.0.8
underscore@1.0.4
webapp@1.2.2
webapp@1.2.3
webapp-hashing@1.0.5
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Change Log
This file documents all notable changes to this project.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.2.2] 2015-12-13

### Fixed

brettle/meteor-accounts-deluxe#1 (Red text error message when adding password
account) when using `useraccounts:flow-routing`. This fix was implemented in `brettle:accounts-patch-ui` version 0.1.6, which this package now depends upon.

[Unreleased]: https://github.com/brettle/meteor-accounts-deluxe/compare/v0.2.2...HEAD
[0.2.2]: https://github.com/brettle/meteor-accounts-deluxe/compare/v0.2.2...v0.2.1
12 changes: 4 additions & 8 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Package.describe({
name: 'brettle:accounts-deluxe',
version: '0.2.1',
version: '0.2.2',
summary:
'Give all visitors anonymous accounts to which a login service can be ' +
'added with popular UI packages',
Expand All @@ -12,10 +12,10 @@ Package.describe({

Package.onUse(function(api) {
api.versionsFrom('1.0.4');
api.use('brettle:accounts-add-service@0.3.0');
api.use('brettle:accounts-add-service@1.0.0');
api.use('brettle:accounts-logout-to-switch@0.4.0');
api.use('brettle:accounts-anonymous-auto@0.3.2');
api.use('brettle:accounts-patch-ui@0.1.1');
api.use('brettle:accounts-patch-ui@0.1.6');
api.imply('accounts-base');
api.imply('brettle:accounts-add-service');
api.imply('brettle:accounts-logout-to-switch');
Expand All @@ -25,11 +25,7 @@ Package.onUse(function(api) {

Package.onTest(function(api) {
api.use('tinytest');
api.use('brettle:accounts-testing-support');
api.use('brettle:accounts-add-service@0.3.0');
api.use('brettle:accounts-logout-to-switch@0.3.0');
api.use('brettle:accounts-anonymous-auto@0.3.2');
api.use('brettle:accounts-patch-ui@0.1.1');
api.use('brettle:accounts-deluxe');
// No tests for this particular meta-package. But all of the packages it uses
// have their own tests.
});

0 comments on commit f453429

Please sign in to comment.