Skip to content

Commit

Permalink
Bump version, update CHANGES, bundle as 1.1.179
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Oct 25, 2017
1 parent 63f9d2b commit e6d54bc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -1,5 +1,13 @@
Summary of changes to citeproc-js since version 1.0.0 release.

==========================
Changes in version 1.1.179
==========================

- Protect against potentially invalid assignment.

Patch by Derek Sifford.

==========================
Changes in version 1.1.178
==========================
Expand Down
3 changes: 3 additions & 0 deletions citeproc.js
Expand Up @@ -4992,6 +4992,9 @@ CSL.Engine.prototype.processCitationCluster = function (citation, citationsPre,
}
var update_items = [];
for (var i = 0, ilen = citationByIndex.length; i < ilen; i += 1) {
if (!citationByIndex[i].properties) {
citationByIndex[i].properties = {};
}
citationByIndex[i].properties.index = i;
for (j = 0, jlen = citationByIndex[i].sortedItems.length; j < jlen; j += 1) {
item = citationByIndex[i].sortedItems[j];
Expand Down
3 changes: 3 additions & 0 deletions citeproc_commonjs.js
Expand Up @@ -5009,6 +5009,9 @@ CSL.Engine.prototype.processCitationCluster = function (citation, citationsPre,
}
var update_items = [];
for (var i = 0, ilen = citationByIndex.length; i < ilen; i += 1) {
if (!citationByIndex[i].properties) {
citationByIndex[i].properties = {};
}
citationByIndex[i].properties.index = i;
for (j = 0, jlen = citationByIndex[i].sortedItems.length; j < jlen; j += 1) {
item = citationByIndex[i].sortedItems[j];
Expand Down
3 changes: 3 additions & 0 deletions citeproc_with_e4x.js
Expand Up @@ -4993,6 +4993,9 @@ CSL.Engine.prototype.processCitationCluster = function (citation, citationsPre,
}
var update_items = [];
for (var i = 0, ilen = citationByIndex.length; i < ilen; i += 1) {
if (!citationByIndex[i].properties) {
citationByIndex[i].properties = {};
}
citationByIndex[i].properties.index = i;
for (j = 0, jlen = citationByIndex[i].sortedItems.length; j < jlen; j += 1) {
item = citationByIndex[i].sortedItems[j];
Expand Down
2 changes: 1 addition & 1 deletion src/load.js
Expand Up @@ -35,7 +35,7 @@

var CSL = {

PROCESSOR_VERSION: "1.1.178",
PROCESSOR_VERSION: "1.1.179",

CONDITION_LEVEL_TOP: 1,

Expand Down

0 comments on commit e6d54bc

Please sign in to comment.