Skip to content

Commit ad9350f

Browse files
committed
Update version for new build
1 parent ec1b16d commit ad9350f

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
5252
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file
5353

5454
```html
55-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
55+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
5656
```
5757
See all available versions [here](https://www.jsdelivr.com/package/npm/danfojs)
5858

@@ -68,7 +68,7 @@ See all available versions [here](https://www.jsdelivr.com/package/npm/danfojs)
6868
<meta charset="UTF-8">
6969
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7070
<script src="https://cdn.plot.ly/plotly-2.2.0.min.js"></script>
71-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
71+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
7272

7373
<title>Document</title>
7474
</head>

danfojs-browser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
5151
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file
5252

5353
```html
54-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
5555
```
5656

5757
### Example Usage in the Browser
@@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you
6666
<meta charset="UTF-8">
6767
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6868
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>
69-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
69+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
7070

7171
<title>Document</title>
7272
</head>

danfojs-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "danfojs",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

danfojs-browser/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ export {
4646
get_dummies
4747
};
4848

49-
export const _version = "0.3.2";
49+
export const _version = "0.3.3";

danfojs-browser/tests/io/reader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-undef */
22

33
describe("read_csv", async function () {
4-
this.timeout(10000); // all tests in this suite get 10 seconds before timeout
4+
this.timeout(100000); // all tests in this suite get 10 seconds before timeout
55
it("reads a csv file from source over the internet", async function () {
66
const csvUrl =
77
"https://storage.googleapis.com/tfjs-examples/multivariate-linear-regression/data/boston-housing-train.csv";
@@ -36,7 +36,7 @@ describe("read_json", async function () {
3636
});
3737

3838
describe("read_excel", async function () {
39-
this.timeout(10000); // all tests in this suite get 10 seconds before timeout
39+
this.timeout(100000); // all tests in this suite get 10 seconds before timeout
4040
it("reads an excel file from source over the internet", async function () {
4141
const remote_url =
4242
"https://raw.githubusercontent.com/opensource9ja/danfojs/dev/danfojs-node/tests/samples/SampleData.xlsx";

danfojs-node/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
5151
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file
5252

5353
```html
54-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
5555
```
5656

5757
### Example Usage in the Browser
@@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you
6666
<meta charset="UTF-8">
6767
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6868
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>
69-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/bundle.min.js"></script>
69+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/lib/bundle.min.js"></script>
7070

7171
<title>Document</title>
7272
</head>

danfojs-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "danfojs-node",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

danfojs-node/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ export {
4646
get_dummies
4747
};
4848

49-
export const _version = "0.3.2";
49+
export const _version = "0.3.3";

0 commit comments

Comments
 (0)