From 90b7a8ddb895054ad6336cc8afbc42b2cef820d2 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 16 Feb 2023 17:45:03 +0100 Subject: [PATCH] v3.0.0-beta.8 --- README.md | 2 +- package.json | 2 +- src/store/utils.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b67308cd3..49c71e1bc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ implemented as a single page application (SPA) for ease of development and to limit the overall number of catalog reads necessary when browsing (as catalogs may be nested and do not necessarily contain references to their parents). -Version: **3.0.0-beta.7** (supports all STAC versions between 0.6.0 and 1.0.0) +Version: **3.0.0-beta.8** (supports all STAC versions between 0.6.0 and 1.0.0) This package has also been published to npm as [`@radiantearth/stac-browser`](https://www.npmjs.com/package/@radiantearth/stac-browser). diff --git a/package.json b/package.json index f99602e6c..490bfbc70 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@radiantearth/stac-browser", - "version": "3.0.0-beta.7", + "version": "3.0.0-beta.8", "description": "A full-fledged UI in Vue for browsing and searching static STAC catalogs and STAC APIs.", "main": "src/main.js", "scripts": { diff --git a/src/store/utils.js b/src/store/utils.js index 11d6b415b..f491f5621 100644 --- a/src/store/utils.js +++ b/src/store/utils.js @@ -52,7 +52,7 @@ export function unproxyUrl(absoluteUrl, proxy) { return absoluteUrl.replace(proxy[1], proxy[0]); } return absoluteUrl; -}; +} export function proxyUrl(absoluteUrl, proxy) { if (absoluteUrl instanceof URI) { @@ -62,7 +62,7 @@ export function proxyUrl(absoluteUrl, proxy) { return absoluteUrl.replace(proxy[0], proxy[1]); } return absoluteUrl; -}; +} export function processSTAC(state, stac) { if (typeof state.preprocessSTAC === 'function') {