Skip to content

Commit 3d90ef2

Browse files
committed
Build latest version
1 parent f8a3d1f commit 3d90ef2

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

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].7/lib/bundle.min.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/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].7/lib/bundle.min.js"></script>
69+
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/lib/bundle.min.js"></script>
7070

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

danfojs-browser/lib/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

danfojs-browser/lib/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.2.7",
3+
"version": "0.2.8",
44
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
55
"main": "lib/bundle.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
@@ -17,4 +17,4 @@ export { Str } from "./core/strings";
1717
export { Utils } from "./core/utils";
1818
export { tf };
1919

20-
export const _version = "0.2.7";
20+
export const _version = "0.2.8";

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].7/lib/bundle.min.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/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].7/lib/bundle.min.js"></script>
69+
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/lib/bundle.min.js"></script>
7070

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

danfojs-node/dist/core/frame.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,6 +1770,8 @@ class DataFrame extends _generic.default {
17701770
});
17711771
col_vals.forEach((col, i) => {
17721772
Object.defineProperty(self, col_names[i], {
1773+
configurable: true,
1774+
17731775
get() {
17741776
return new _series.Series(col, {
17751777
columns: col_names[i],

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.2.7",
3+
"version": "0.2.8",
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
@@ -17,4 +17,4 @@ export { Str } from "./core/strings";
1717
export { Utils } from "./core/utils";
1818
export { tf };
1919

20-
export const _version = "0.2.7";
20+
export const _version = "0.2.8";

0 commit comments

Comments
 (0)