Skip to content

Commit

Permalink
Create 1.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tylergraf authored and tofumatt committed Feb 18, 2017
1 parent d469da1 commit d50d845
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -16,7 +16,7 @@ module.exports = exports = function(grunt) {
' localForage -- Offline Storage, Improved\n' +
' Version ' + grunt.file.readJSON('package.json').version + '\n' +
' https://localforage.github.io/localForage\n' +
' (c) 2013-2016 Mozilla, Apache License 2.0\n' +
' (c) 2013-2017 Mozilla, Apache License 2.0\n' +
'*/\n';

var babelModuleIdProvider = function getModuleId(moduleName) {
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -25,5 +25,5 @@
"assert": "~0.1.0",
"modernizr": "~2.8.1"
},
"version": "1.4.3"
"version": "1.5.0"
}
2 changes: 1 addition & 1 deletion component.json
@@ -1,6 +1,6 @@
{
"name": "localforage",
"version": "1.4.3",
"version": "1.5.0",
"dependencies": {
"then/promise": "5.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions dist/localforage.js
@@ -1,8 +1,8 @@
/*!
localForage -- Offline Storage, Improved
Version 1.4.3
Version 1.5.0
https://localforage.github.io/localForage
(c) 2013-2016 Mozilla, Apache License 2.0
(c) 2013-2017 Mozilla, Apache License 2.0
*/
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.localforage = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw (f.code="MODULE_NOT_FOUND", f)}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
(function (global){
Expand Down Expand Up @@ -343,7 +343,7 @@ if (typeof global.Promise !== 'function') {
},{"2":2}],4:[function(_dereq_,module,exports){
'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

Expand Down
6 changes: 3 additions & 3 deletions dist/localforage.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/localforage.nopromises.js
@@ -1,13 +1,13 @@
/*!
localForage -- Offline Storage, Improved
Version 1.4.3
Version 1.5.0
https://localforage.github.io/localForage
(c) 2013-2016 Mozilla, Apache License 2.0
(c) 2013-2017 Mozilla, Apache License 2.0
*/
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.localforage = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw (f.code="MODULE_NOT_FOUND", f)}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

Expand Down
6 changes: 3 additions & 3 deletions dist/localforage.nopromises.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -9,7 +9,7 @@
"storage",
"websql"
],
"version": "1.4.3",
"version": "1.5.0",
"homepage": "https://github.com/localForage/localForage",
"repository": {
"type": "git",
Expand Down

0 comments on commit d50d845

Please sign in to comment.