Skip to content

Commit

Permalink
Update version for new build
Browse files Browse the repository at this point in the history
  • Loading branch information
risenW committed Oct 10, 2021
1 parent ec1b16d commit ad9350f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -52,7 +52,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file

```html
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.2/lib/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.3/lib/bundle.min.js"></script>
```
See all available versions [here](https://www.jsdelivr.com/package/npm/danfojs)

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

<title>Document</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions danfojs-browser/README.md
Expand Up @@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file

```html
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.2/lib/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.3/lib/bundle.min.js"></script>
```

### Example Usage in the Browser
Expand All @@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.2/lib/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.3/lib/bundle.min.js"></script>

<title>Document</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion danfojs-browser/package.json
@@ -1,6 +1,6 @@
{
"name": "danfojs",
"version": "0.3.2",
"version": "0.3.3",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion danfojs-browser/src/index.js
Expand Up @@ -46,4 +46,4 @@ export {
get_dummies
};

export const _version = "0.3.2";
export const _version = "0.3.3";
4 changes: 2 additions & 2 deletions danfojs-browser/tests/io/reader.js
@@ -1,7 +1,7 @@
/* eslint-disable no-undef */

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

describe("read_excel", async function () {
this.timeout(10000); // all tests in this suite get 10 seconds before timeout
this.timeout(100000); // all tests in this suite get 10 seconds before timeout
it("reads an excel file from source over the internet", async function () {
const remote_url =
"https://raw.githubusercontent.com/opensource9ja/danfojs/dev/danfojs-node/tests/samples/SampleData.xlsx";
Expand Down
4 changes: 2 additions & 2 deletions danfojs-node/README.md
Expand Up @@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org
To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file

```html
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.2/lib/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.3/lib/bundle.min.js"></script>
```

### Example Usage in the Browser
Expand All @@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.2/lib/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.3.3/lib/bundle.min.js"></script>

<title>Document</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion danfojs-node/package.json
@@ -1,6 +1,6 @@
{
"name": "danfojs-node",
"version": "0.3.2",
"version": "0.3.3",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion danfojs-node/src/index.js
Expand Up @@ -46,4 +46,4 @@ export {
get_dummies
};

export const _version = "0.3.2";
export const _version = "0.3.3";

0 comments on commit ad9350f

Please sign in to comment.