File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
11
## [ 0.9.0] - 2024-05-06
4
12
5
13
### New! :sparkles :
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " lonboard"
3
- version = " 0.9.0 "
3
+ version = " 0.9.1 "
4
4
description = " Python library for fast, interactive geospatial vector data visualization in Jupyter."
5
5
authors = [
" Kyle Barron <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import * as arrow from "apache-arrow";
3
3
4
4
// NOTE: this version must be synced exactly with the parquet-wasm version in
5
5
// use.
6
- const PARQUET_WASM_VERSION = "0.6.0 " ;
6
+ const PARQUET_WASM_VERSION = "0.6.1 " ;
7
7
const PARQUET_WASM_CDN_URL = `https://cdn.jsdelivr.net/npm/parquet-wasm@${ PARQUET_WASM_VERSION } /esm/parquet_wasm_bg.wasm` ;
8
8
let WASM_READY : boolean = false ;
9
9
You can’t perform that action at this time.
0 commit comments