Skip to content

Commit

Permalink
Update minor version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
risenW committed Apr 20, 2022
1 parent 51e626d commit 0ec493e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -70,7 +70,7 @@ yarn add danfojs
For use directly in HTML files, you can add the latest script tag from [JsDelivr](https://www.jsdelivr.com/package/npm/danfojs) to your HTML file:

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

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

<title>Document</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/danfojs-base/index.ts
Expand Up @@ -29,7 +29,7 @@ import merge from "./transformers/merge"
import dateRange from "./core/daterange"
import tensorflow from "./shared/tensorflowlib"

const __version = "1.1.0";
const __version = "1.1.1";

export {
NDframe,
Expand Down
2 changes: 1 addition & 1 deletion src/danfojs-base/package.json
@@ -1,6 +1,6 @@
{
"name": "danfojs-base",
"version": "1.1.0",
"version": "1.1.1",
"description": "Base package used in danfojs-node and danfojs-browser",
"main": "index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/danfojs-browser/README.md
Expand Up @@ -71,7 +71,7 @@ yarn add danfojs
For use directly in HTML files, you can add the latest script tag from [JsDelivr](https://www.jsdelivr.com/package/npm/danfojs) to your HTML file:

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

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

<title>Document</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/danfojs-browser/package.json
@@ -1,6 +1,6 @@
{
"name": "danfojs",
"version": "1.1.0",
"version": "1.1.1",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"main": "dist/danfojs-browser/src/index.js",
"types": "dist/danfojs-browser/src/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/danfojs-node/README.md
Expand Up @@ -71,7 +71,7 @@ yarn add danfojs
For use directly in HTML files, you can add the latest script tag from [JsDelivr](https://www.jsdelivr.com/package/npm/danfojs) to your HTML file:

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

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

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

0 comments on commit 0ec493e

Please sign in to comment.