Skip to content

Commit

Permalink
Bump version to 3.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaister committed Jan 26, 2025
1 parent d41bd3f commit b7d1f5b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@

# Revision history:

### 3.9.8

* _Update npm dependencies to fix vulnerabilities_
* Moving to npm build (package-lock.json), yarn does not support "audit fix" command to fix dependencies vulnerabilities automatically.

### 3.9.7

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

### 3.9.6

Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.9.7
* ExcellentExport 3.9.8
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos (jordiburgos@gmail.com)
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "excellentexport",
"version": "3.9.7",
"version": "3.9.8",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "https://jordiburgos.com",
Expand Down
4 changes: 2 additions & 2 deletions src/excellentexport.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.9.7
* ExcellentExport 3.9.8
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos (jordiburgos@gmail.com)
Expand Down Expand Up @@ -54,7 +54,7 @@ export type ExcellentExportType = {

const ExcellentExport = function() {

const version = "3.9.7";
const version = "3.9.8";

/*
ExcellentExport.convert(options, sheets);
Expand Down

0 comments on commit b7d1f5b

Please sign in to comment.