Skip to content

Commit

Permalink
Bump version, update CHANGES, bundle as 1.1.95
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Apr 15, 2016
1 parent 7c43512 commit 3f379ad
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.txt
@@ -1,5 +1,11 @@
Summary of changes to citeproc-js since version 1.0.0 release.

=========================
Changes in version 1.1.95
=========================

- Trim numeric field values before parsing.

=========================
Changes in version 1.1.94
=========================
Expand Down
1 change: 1 addition & 0 deletions citeproc.js
Expand Up @@ -13231,6 +13231,7 @@ CSL.Engine.prototype.processNumber = function (node, ItemObject, variable, type)
var debug = false;
var me = this;
function normalizeFieldValue(str, defaultLabel) {
str = str.trim();
var m = str.match(/^([^ ]+)/);
if (m && !CSL.STATUTE_SUBDIV_STRINGS[m[1]]) {
var embeddedLabel = null;
Expand Down
1 change: 1 addition & 0 deletions citeproc_with_e4x.js
Expand Up @@ -13232,6 +13232,7 @@ CSL.Engine.prototype.processNumber = function (node, ItemObject, variable, type)
var debug = false;
var me = this;
function normalizeFieldValue(str, defaultLabel) {
str = str.trim();
var m = str.match(/^([^ ]+)/);
if (m && !CSL.STATUTE_SUBDIV_STRINGS[m[1]]) {
var embeddedLabel = null;
Expand Down
2 changes: 1 addition & 1 deletion src/load.js
Expand Up @@ -45,7 +45,7 @@ if (!Array.indexOf) {

var CSL = {

PROCESSOR_VERSION: "1.1.94",
PROCESSOR_VERSION: "1.1.95",

CONDITION_LEVEL_TOP: 1,

Expand Down

0 comments on commit 3f379ad

Please sign in to comment.