Skip to content

Commit b40eda7

Browse files
committed
Bump version to 0.1.6
1 parent e51ab08 commit b40eda7

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To install node embryo module from npm repository :
4141
To use Embryo in browser, just insert this tag in your html :
4242

4343
```javascript
44-
<script src="dist/embryo-0.1.5.min.js" type="text/javascript"></script>
44+
<script src="dist/embryo-0.1.6.min.js" type="text/javascript"></script>
4545
```
4646

4747
Usage

dist/embryo-0.1.5.js renamed to dist/embryo-0.1.6.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Embryo version 0.1.5
2+
Embryo version 0.1.6
33
Author:
44
Tierry Danquin
55
Github:
@@ -101,7 +101,7 @@ var Embryo = function() {
101101
//console.log('---END---')
102102
}
103103

104-
Embryo.version = '0.1.5'
104+
Embryo.version = '0.1.6'
105105

106106
Embryo.extend = function( o ) {
107107

dist/embryo-0.1.5.min.js renamed to dist/embryo-0.1.6.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/embryo.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Embryo version 0.1.1
2+
Embryo version 0.1.6
33
Author:
44
Tierry Danquin
55
Github:
@@ -43,7 +43,7 @@ var debugPlugin = function( name, step, o ) {
4343
text = value
4444
break
4545
}
46-
console.log( "\tproperty: [" + name + "]:\t\t[" + text + "] -> (" + typeof(value) + ")" )
46+
console.log( "\tproperty: [" + name + "]:\t\t[" + text + "] -> (" + typeof(value) + ")" )
4747
}
4848
}
4949
}
@@ -80,7 +80,7 @@ var Embryo = function() {
8080
if (props.hasOwnProperty(n)) {
8181
if (typeof this[n] == 'undefined') {
8282
this[n] = props[n]
83-
//console.log('['+n+']=['+props[n]+']')
83+
//console.log('['+n+']=['+props[n]+']')
8484
}
8585
}
8686
}
@@ -118,17 +118,17 @@ Embryo.extend = function( o ) {
118118
throw Error( 'Constructor function invalid.')
119119
}
120120

121-
var parent = this
121+
var parent = this
122122
var child = function() {
123123
return parent.apply(this, arguments)
124-
}
124+
}
125125
child.extend = parent.extend
126126

127127
var Surrogate = function() {}
128128
Surrogate.prototype = this.prototype
129129
child.prototype = new Surrogate
130130

131-
if (embryo_options.forceTyping && !o[embryo_options.nameType]) {
131+
if (embryo_options.forceTyping && !o[embryo_options.nameType]) {
132132
o[embryo_options.nameType] = embryo_options.typeDefault
133133
}
134134
var type = o[embryo_options.nameType]
@@ -166,9 +166,9 @@ Embryo.extend = function( o ) {
166166

167167
//console.log(o._type + ' - end')
168168
//var timeEnd = new Date().getTime()
169-
//console.log('time: ' + (timeEnd - timeStart) + 'ms')
169+
//console.log('time: ' + (timeEnd - timeStart) + 'ms')
170170

171-
return child
171+
return child
172172
}
173173

174174
Embryo.configure = function ( o ) {
@@ -193,7 +193,7 @@ Embryo.plugins = function( name ) {
193193
}
194194
}
195195
return null
196-
}
196+
}
197197

198198
Embryo.configure()
199199

@@ -235,7 +235,7 @@ Embryo.Plugin = Embryo.extend({
235235
},
236236
getName: function() {
237237
return this.name
238-
}
238+
}
239239
})
240240

241241
module.exports = Embryo

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "embryo",
33
"preferGlobal": "true",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"engines" : {
66
"node" : ">=0.8"
77
},

test/embryo-browser-test.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
66
</head>
77
<body>
8-
<script src="../dist/embryo-0.1.5.js" type="text/javascript"></script>
8+
<script src="../dist/embryo-0.1.6.js" type="text/javascript"></script>
99
<script src="./embryo-browser-test.js" type="text/javascript"></script>
1010
<script type="text/javascript">
1111

0 commit comments

Comments
 (0)