Skip to content

Commit

Permalink
Fix parquet-wasm WASM version mismatch (#508)
Browse files Browse the repository at this point in the history
### Change list

- Lonboard 0.9 is totally broken because the parquet-wasm JS version and
the parquet-wasm WASM version didn't match 😭
  • Loading branch information
kylebarron committed May 7, 2024
1 parent 9649bbd commit 7fe0f99
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.9.1] - 2024-05-07

### Fixes :bug:

- Fix parquet-wasm WASM version mismatch by @kylebarron in https://github.com/developmentseed/lonboard/pull/508

**Full Changelog**: https://github.com/developmentseed/lonboard/compare/v0.9.0...v0.9.1

## [0.9.0] - 2024-05-06

### New! :sparkles:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lonboard"
version = "0.9.0"
version = "0.9.1"
description = "Python library for fast, interactive geospatial vector data visualization in Jupyter."
authors = ["Kyle Barron <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/parquet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as arrow from "apache-arrow";

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

Expand Down

0 comments on commit 7fe0f99

Please sign in to comment.