From 7fe0f991200989961861997ead3864b4f728173b Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 7 May 2024 15:05:41 -0400 Subject: [PATCH] Fix parquet-wasm WASM version mismatch (#508) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Change list - Lonboard 0.9 is totally broken because the parquet-wasm JS version and the parquet-wasm WASM version didn't match 😭 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/parquet.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c0c84c..68ed320b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 71793247..1b6c9e1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/src/parquet.ts b/src/parquet.ts index e57baff0..0fed6980 100644 --- a/src/parquet.ts +++ b/src/parquet.ts @@ -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;