Skip to content

Commit 1fcc90d

Browse files
committed
v3.0.1
Signed-off-by: Andrew Stein <steinlink@gmail.com>
1 parent d77cf93 commit 1fcc90d

41 files changed

Lines changed: 83 additions & 69 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 29 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,37 @@
1+
# [v3.0.1](https://github.com/finos/perspective/releases/tag/v3.0.1)
2+
3+
_26 August 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v3.0.0...v3.0.1))
4+
5+
Features
6+
7+
- Stringify Arrow lists [#2700](https://github.com/finos/perspective/pull/2700)
8+
- Zstd decompression for arrows [#2717](https://github.com/finos/perspective/pull/2717)
9+
- Better Timestamp Parsing [#2713](https://github.com/finos/perspective/pull/2713)
10+
11+
Misc
12+
13+
- Fix docs site serialized loading, docs.rs gen [#2718](https://github.com/finos/perspective/pull/2718)
14+
115
# [v3.0.0](https://github.com/finos/perspective/releases/tag/v3.0.0)
216

3-
_16 August 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.10.1...v3.0.0))
17+
_23 August 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.10.1...v3.0.0))
418

5-
Fixes
19+
**Breaking**
620

7-
- Add region, column and row selection modes to Perspective Datagrid [#2618](https://github.com/finos/perspective/pull/2618)
8-
- Use ABI3 for `perspective-python` shared library [#2661](https://github.com/finos/perspective/pull/2661)
21+
- Perspective Virtual API (Python) [#2625](https://github.com/finos/perspective/pull/2625)
22+
- Perspective Virtual API (JavaScript) [#2615](https://github.com/finos/perspective/pull/2615)
23+
24+
Features
25+
26+
- Add Pyodide support and split Rust/C++ builds for Python wheel [#2707](https://github.com/finos/perspective/pull/2707)
27+
- Draw 0 axis prominently [#2698](https://github.com/finos/perspective/pull/2698)
28+
- Calculate `group_by` in parallel [#2701](https://github.com/finos/perspective/pull/2701)
929
- `PerspectiveWidget` support for new Python API [#2658](https://github.com/finos/perspective/pull/2658)
30+
- Use ABI3 for `perspective-python` shared library [#2661](https://github.com/finos/perspective/pull/2661)
31+
- Add region, column and row selection modes to Perspective Datagrid [#2618](https://github.com/finos/perspective/pull/2618)
32+
33+
Fixes
34+
1035
- Fix missing icons [#2712](https://github.com/finos/perspective/pull/2712)
1136
- Fix Windows JupyterLab packaging [#2705](https://github.com/finos/perspective/pull/2705)
1237
- Fix Python `sdist`, update docs, add `lint` to CI [#2702](https://github.com/finos/perspective/pull/2702)
@@ -18,17 +43,6 @@ Misc
1843
- New status indicator [#2692](https://github.com/finos/perspective/pull/2692)
1944
- Docs and examples update for new API [#2659](https://github.com/finos/perspective/pull/2659)
2045

21-
Features
22-
23-
- Add Pyodide support and split Rust/C++ builds for Python wheel [#2707](https://github.com/finos/perspective/pull/2707)
24-
- Draw 0 axis prominently [#2698](https://github.com/finos/perspective/pull/2698)
25-
- Calculate `group_by` in parallel [#2701](https://github.com/finos/perspective/pull/2701)
26-
27-
**Breaking**
28-
29-
- Perspective Virtual API (Python) [#2625](https://github.com/finos/perspective/pull/2625)
30-
- Perspective Virtual API (JavaScript) [#2615](https://github.com/finos/perspective/pull/2615)
31-
3246
# [v2.10.1](https://github.com/finos/perspective/releases/tag/v2.10.1)
3347

3448
_23 May 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.10.0...v2.10.1))

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpp/perspective/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"author": "The Perspective Authors",
55
"license": "Apache-2.0",
6-
"version": "3.0.0",
6+
"version": "3.0.1",
77
"main": "./dist/esm/perspective.cpp.js",
88
"files": [
99
"dist/esm/**/*",

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@finos/perspective-docs",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

docs/src/components/Demo/layouts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
export const LAYOUTS = {
1414
sparkgrid: {
15-
version: "3.0.0",
15+
version: "3.0.1",
1616
plugin: "Datagrid",
1717
plugin_config: {
1818
columns: {},

examples/blocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "blocks",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "A collection of simple client-side Perspective examples for `http://bl.ocks.org`.",
66
"scripts": {
77
"start": "mkdirp dist && node --experimental-modules server.mjs",

examples/esbuild-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esbuild-example",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "An esbuild example app built using `@finos/perspective-viewer`.",
66
"scripts": {
77
"build": "node build.js",

examples/esbuild-remote/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esbuild-remote",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "An example of 2 Perspectives, one client and one server, streaming via Apache Arrow.",
66
"scripts": {
77
"start": "node build.js && node server/index.mjs"

examples/python-aiohttp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python-aiohttp",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "An example of editing a `perspective-python` server from the browser.",
66
"scripts": {
77
"start": "PYTHONPATH=../../python/perspective python3 server.py"

examples/python-starlette/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python-starlette",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "An example of editing a `perspective-python` server from the browser.",
66
"scripts": {
77
"start": "PYTHONPATH=../../python/perspective python3 server.py"

0 commit comments

Comments
 (0)