Skip to content

Commit

Permalink
📦 v3.0.1
Browse files Browse the repository at this point in the history
- Compatibility with `[email protected].*`;
- Minor update to the test-suite;
- This is maintenance release.
  • Loading branch information
dr-dimitru committed Mar 1, 2020
1 parent 7948dc2 commit 0e44b9e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
30 changes: 15 additions & 15 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
[email protected]
babel-compiler@7.3.4
babel-runtime@1.3.0
[email protected].11
babel-compiler@7.5.2
babel-runtime@1.5.0
[email protected].12
[email protected]
[email protected]
callback-hook@1.1.0
callback-hook@1.3.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
ecmascript@0.12.4
ecmascript@0.14.2
[email protected]
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
[email protected].0
ecmascript-runtime-client@0.10.0
ecmascript-runtime-server@0.9.0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
local-test:ostrio:[email protected].0
local-test:ostrio:[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
modules@0.15.0
modules-runtime@0.12.0
mongo@1.8.0
[email protected]
[email protected]
[email protected]
npm-mongo@3.1.2
npm-mongo@3.3.0
[email protected]
ostrio:[email protected].0
ostrio:[email protected].1
[email protected]
[email protected]
[email protected]
Expand All @@ -44,5 +44,5 @@ [email protected]
[email protected]
[email protected]
[email protected]
webapp@1.7.3
webapp@1.8.0
[email protected]
2 changes: 1 addition & 1 deletion client-storage-tests.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ClientStorage, clientStorage } from 'meteor/ostrio:cstorage';
import { ClientStorage, clientStorage } from './client-storage.js';

Tinytest.add('ClientStorage - set() / get() / has() - Void (Should fail for localStorage)', function (test) {
ClientStorage.empty();
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:cstorage',
version: '3.0.0',
version: '3.0.1',
summary: 'Bulletproof persistent Client (Browser) storage, works with disabled Cookies and/or localStorage',
git: 'https://github.com/VeliovGroup/Client-Storage',
documentation: 'README.md'
Expand All @@ -14,6 +14,6 @@ Package.onUse((api) => {

Package.onTest((api) => {
api.use('tinytest');
api.use(['ecmascript', 'ostrio:cstorage'], 'client');
api.use('ecmascript', 'client');
api.addFiles('client-storage-tests.js', 'client');
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ClientStorage",
"version": "3.0.0",
"version": "3.0.1",
"description": "Bulletproof persistent browser storage, works with disabled Cookies and/or localStorage",
"main": "./client-storage.js",
"scripts": {
Expand Down

0 comments on commit 0e44b9e

Please sign in to comment.