Skip to content

Commit b7d1f5b

Browse files
committed
Bump version to 3.9.8
1 parent d41bd3f commit b7d1f5b

5 files changed

+10
-6
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@
2020

2121
# Revision history:
2222

23+
### 3.9.8
24+
25+
* _Update npm dependencies to fix vulnerabilities_
26+
* Moving to npm build (package-lock.json), yarn does not support "audit fix" command to fix dependencies vulnerabilities automatically.
27+
2328
### 3.9.7
2429

2530
* _Update npm dependencies to fix vulnerabilities_
2631
* xlsx package loaded from CDN [SheetJS CDN](https://cdn.sheetjs.com/)
27-
* Moving to npm build (package-lock.json), yarn does not support "audit fix" command to fix dependencies vulnerabilities automatically.
2832

2933
### 3.9.6
3034

dist/excellentexport.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ExcellentExport 3.9.7
2+
* ExcellentExport 3.9.8
33
* A client side Javascript export to Excel.
44
*
55
* @author: Jordi Burgos (jordiburgos@gmail.com)

dist/excellentexport.js

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "excellentexport",
3-
"version": "3.9.7",
3+
"version": "3.9.8",
44
"description": "Client side JavaScript export to Excel or CSV",
55
"license": "MIT",
66
"homepage": "https://jordiburgos.com",

src/excellentexport.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ExcellentExport 3.9.7
2+
* ExcellentExport 3.9.8
33
* A client side Javascript export to Excel.
44
*
55
* @author: Jordi Burgos (jordiburgos@gmail.com)
@@ -54,7 +54,7 @@ export type ExcellentExportType = {
5454

5555
const ExcellentExport = function() {
5656

57-
const version = "3.9.7";
57+
const version = "3.9.8";
5858

5959
/*
6060
ExcellentExport.convert(options, sheets);

0 commit comments

Comments
 (0)