Release v0.4.0

This commit is contained in:
pengfei.zhou 2020-04-10 06:38:16 +00:00 committed by osborn
parent ada2380b95
commit 9bfa93cb4d
10 changed files with 18 additions and 12 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DoricCore'
s.version = '0.3.16'
s.version = '0.4.0'
s.summary = 'Doric iOS SDK'

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DoricDevkit'
s.version = '0.3.16'
s.version = '0.4.0'
s.summary = 'Doric iOS Devkit'
s.description = <<-DESC

View File

@ -1 +1 @@
version=0.3.16
version=0.4.0

View File

@ -1 +1 @@
0.3.16
0.4.0

View File

@ -1705,7 +1705,7 @@ var doric = (function (exports) {
(module.exports = function (key, value) {
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.6.4',
version: '3.6.5',
mode: 'global',
copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
});
@ -6489,7 +6489,13 @@ var doric = (function (exports) {
defer = functionBindContext(port.postMessage, port, 1);
// Browsers with postMessage, skip WebWorkers
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
} else if (global_1.addEventListener && typeof postMessage == 'function' && !global_1.importScripts && !fails(post)) {
} else if (
global_1.addEventListener &&
typeof postMessage == 'function' &&
!global_1.importScripts &&
!fails(post) &&
location.protocol !== 'file:'
) {
defer = post;
global_1.addEventListener('message', listener, false);
// IE8-
@ -9861,7 +9867,7 @@ var doric = (function (exports) {
var INVALID_PORT = 'Invalid port';
var ALPHA = /[A-Za-z]/;
var ALPHANUMERIC = /[\d+\-.A-Za-z]/;
var ALPHANUMERIC = /[\d+-.A-Za-z]/;
var DIGIT = /\d/;
var HEX_START = /^(0x|0X)/;
var OCT = /^[0-7]+$/;

View File

@ -1,6 +1,6 @@
{
"name": "doric",
"version": "0.3.16",
"version": "0.4.0",
"description": "The JS Framework of Doric",
"main": "bundle/doric-vm.js",
"types": "index.d.ts",

View File

@ -4038,7 +4038,7 @@ return __module.exports;
var doric_web = (function (exports, axios, sandbox) {
'use strict';
axios = axios && axios.hasOwnProperty('default') ? axios['default'] : axios;
axios = axios && Object.prototype.hasOwnProperty.call(axios, 'default') ? axios['default'] : axios;
class DoricPlugin {
constructor(context) {

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "doric-web",
"version": "0.3.16",
"version": "0.4.0",
"description": "Doric library for Web",
"main": "dist/index.js",
"scripts": {

View File

@ -1 +1 @@
0.3.16
0.4.0