Skip to content

Commit

Permalink
update package for release
Browse files Browse the repository at this point in the history
  • Loading branch information
amitguptagwl committed Feb 2, 2023
1 parent ed962e0 commit 83069d8
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 479 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.

**4.1.0 / 2023-02-02**
* Fix '<' or '>' in DTD comment throwing an error. (#533) (By [Adam Baker](https://github.com/Cwazywierdo))
* Set "eNotation" to 'true' as default

**4.0.15 / 2023-01-25**
* make "eNotation" optional

**4.0.14 / 2023-01-22**
* fixed: add missed typing "eNotation" to parse values

Expand Down
2 changes: 1 addition & 1 deletion lib/fxp.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/fxp.min.js.map

Large diffs are not rendered by default.

470 changes: 0 additions & 470 deletions lib/fxparser.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/fxparser.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion lib/fxparser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/fxparser.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fast-xml-parser",
"version": "4.0.15",
"version": "4.1.0",
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
"main": "./src/fxp.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/xmlparser/OptionsBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const defaultOptions = {
numberParseOptions: {
hex: true,
leadingZeros: true,
eNotation: false
eNotation: true
},
tagValueProcessor: function(tagName, val) {
return val;
Expand Down

0 comments on commit 83069d8

Please sign in to comment.