Skip to content

Commit 7fe0f99

Browse files
authored
Fix parquet-wasm WASM version mismatch (#508)
### Change list - Lonboard 0.9 is totally broken because the parquet-wasm JS version and the parquet-wasm WASM version didn't match 😭
1 parent 9649bbd commit 7fe0f99

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.9.1] - 2024-05-07
4+
5+
### Fixes :bug:
6+
7+
- Fix parquet-wasm WASM version mismatch by @kylebarron in https://github.com/developmentseed/lonboard/pull/508
8+
9+
**Full Changelog**: https://github.com/developmentseed/lonboard/compare/v0.9.0...v0.9.1
10+
311
## [0.9.0] - 2024-05-06
412

513
### New! :sparkles:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "lonboard"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Python library for fast, interactive geospatial vector data visualization in Jupyter."
55
authors = ["Kyle Barron <[email protected]>"]
66
license = "MIT"

src/parquet.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as arrow from "apache-arrow";
33

44
// NOTE: this version must be synced exactly with the parquet-wasm version in
55
// use.
6-
const PARQUET_WASM_VERSION = "0.6.0";
6+
const PARQUET_WASM_VERSION = "0.6.1";
77
const PARQUET_WASM_CDN_URL = `https://cdn.jsdelivr.net/npm/parquet-wasm@${PARQUET_WASM_VERSION}/esm/parquet_wasm_bg.wasm`;
88
let WASM_READY: boolean = false;
99

0 commit comments

Comments
 (0)