Skip to content

Commit e56468e

Browse files
committed
Version 2.1.0
1 parent 3ac6368 commit e56468e

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

demos/po/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-demos</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

demos/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

demos/wms/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-demos</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

nodejs/scripts/jsonix.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2547,7 +2547,7 @@ Jsonix.Model.ElementsPropertyInfo = Jsonix
25472547
Jsonix.Util.Ensure.ensureObject(mapping);
25482548
Jsonix.Model.AbstractElementsPropertyInfo.prototype.initialize
25492549
.apply(this, [ mapping ]);
2550-
var etis = mapping.elementTypeInfos||mapping.etis||undefined;
2550+
var etis = mapping.elementTypeInfos||mapping.etis||[];
25512551
Jsonix.Util.Ensure.ensureArray(etis);
25522552
this.elementTypeInfos = etis;
25532553
},
@@ -3377,7 +3377,7 @@ Jsonix.Model.Module = Jsonix
33773377
},
33783378
createList : function(mapping) {
33793379
Jsonix.Util.Ensure.ensureObject(mapping);
3380-
var ti = mapping.typeInfo||mapping.ti||'String';
3380+
var ti = mapping.baseTypeInfo||mapping.typeInfo||mapping.bti||mapping.ti||'String';
33813381
var tn = mapping.typeName||mapping.tn||null;
33823382
var s = mapping.separator||mapping.sep||' ';
33833383
Jsonix.Util.Ensure.ensureExists(ti);

nodejs/scripts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/tests/basic/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs-tests</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/tests/po/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs-tests</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

nodejs/tests/wps/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs-tests</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>org.hisrc.jsonix</groupId>
44
<artifactId>jsonix-project</artifactId>
55
<packaging>pom</packaging>
6-
<version>2.0.13-SNAPSHOT</version>
6+
<version>2.1.0</version>
77
<name>Jsonix</name>
88
<url>http://static.highsource.org/jsonix/</url>
99
<parent>

samples/po/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.hisrc.jsonix</groupId>
99
<artifactId>jsonix-samples</artifactId>
10-
<version>2.0.13-SNAPSHOT</version>
10+
<version>2.1.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<dependencies>

samples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.hisrc.jsonix</groupId>
99
<artifactId>jsonix-project</artifactId>
10-
<version>2.0.13-SNAPSHOT</version>
10+
<version>2.1.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<modules>

scripts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.13-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

0 commit comments

Comments
 (0)