Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitar committed Sep 20, 2019
1 parent 8445519 commit 0fe25b5
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 51 deletions.
95 changes: 51 additions & 44 deletions .versions
@@ -1,58 +1,65 @@
accounts-base@1.4.0
accounts-password@1.5.0
accounts-base@1.4.3
accounts-password@1.5.1
allow-deny@1.1.0
babel-compiler@6.24.7
babel-runtime@1.1.1
base64@1.0.10
binary-heap@1.0.10
boilerplate-generator@1.3.0
caching-compiler@1.1.9
callback-hook@1.0.10
check@1.2.5
coffeescript@2.0.3_3
coffeescript-compiler@2.0.3_3
babel-compiler@7.3.4
babel-runtime@1.3.0
base64@1.0.11
binary-heap@1.0.11
boilerplate-generator@1.6.0
caching-compiler@1.2.1
callback-hook@1.1.0
check@1.3.1
coffeescript@2.4.1
coffeescript-compiler@2.4.1
ddp@1.4.0
ddp-client@2.2.0
ddp-common@1.3.0
ddp-client@2.3.3
ddp-common@1.4.0
ddp-rate-limiter@1.0.7
ddp-server@2.1.0
diff-sequence@1.0.7
ecmascript@0.9.0
ecmascript-runtime@0.5.0
ecmascript-runtime-client@0.5.0
ecmascript-runtime-server@0.5.0
ddp-server@2.3.0
diff-sequence@1.1.1
dynamic-import@0.5.1
ecmascript@0.12.7
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
ejson@1.1.0
email@1.2.3
fetch@0.1.1
geojson-utils@1.0.10
id-map@1.0.9
local-test:peerlibrary:user-extra@0.4.0
id-map@1.1.0
inter-process-messaging@0.1.0
local-test:peerlibrary:user-extra@0.5.0
localstorage@1.2.0
logging@1.1.19
meteor@1.8.0
minimongo@1.4.0
modules@0.11.0
modules-runtime@0.9.0
mongo@1.3.1
logging@1.1.20
meteor@1.9.3
minimongo@1.4.5
modern-browsers@0.1.4
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
mongo-decimal@0.1.1
mongo-dev-server@1.1.0
mongo-id@1.0.6
mongo-id@1.0.7
npm-bcrypt@0.9.3
npm-mongo@2.2.33
ordered-dict@1.0.9
peerlibrary:classy-test@0.3.0
peerlibrary:extend-publish@0.5.0
peerlibrary:publish-context@0.6.0
peerlibrary:user-extra@0.4.0
promise@0.10.0
random@1.0.10
rate-limit@1.0.8
npm-mongo@3.1.2
ordered-dict@1.1.0
peerlibrary:classy-test@0.4.0
peerlibrary:extend-publish@0.6.0
peerlibrary:publish-context@0.7.0
peerlibrary:user-extra@0.5.0
promise@0.11.2
random@1.1.0
rate-limit@1.0.9
reactive-var@1.0.11
retry@1.0.9
routepolicy@1.0.12
reload@1.3.0
retry@1.1.0
routepolicy@1.1.0
service-configuration@1.0.11
sha@1.0.9
srp@1.0.10
tinytest@1.0.12
tracker@1.1.3
socket-stream-client@0.2.2
srp@1.0.12
tinytest@1.1.0
tracker@1.2.0
underscore@1.0.10
webapp@1.4.0
webapp@1.7.3
webapp-hashing@1.0.9
14 changes: 7 additions & 7 deletions package.js
@@ -1,16 +1,16 @@
Package.describe({
name: 'peerlibrary:user-extra',
summary: "Extended Meteor.userId() and Meteor.user()",
version: '0.4.0',
version: '0.5.0',
git: 'https://github.com/peerlibrary/meteor-user-extra.git'
});

Package.onUse(function (api) {
api.versionsFrom('METEOR@1.4.4.5');
api.versionsFrom('METEOR@1.8.1');

// Core dependencies.
api.use([
'coffeescript@2.0.3_3',
'coffeescript@2.4.1',
'ecmascript',
'ddp',
'accounts-base',
Expand All @@ -19,7 +19,7 @@ Package.onUse(function (api) {

// 3rd party dependencies.
api.use([
'peerlibrary:publish-context@0.6.0'
'peerlibrary:publish-context@0.7.0'
], 'server');

api.addFiles([
Expand All @@ -32,11 +32,11 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.versionsFrom('METEOR@1.4.4.5');
api.versionsFrom('METEOR@1.8.1');

// Core dependencies.
api.use([
'coffeescript@2.0.3_3',
'coffeescript@2.4.1',
'ecmascript',
'accounts-password',
'random',
Expand All @@ -50,7 +50,7 @@ Package.onTest(function (api) {

// 3rd party dependencies.
api.use([
'peerlibrary:classy-test@0.3.0'
'peerlibrary:classy-test@0.4.0'
]);

api.addFiles([
Expand Down

0 comments on commit 0fe25b5

Please sign in to comment.