diff --git a/README.md b/README.md index a3685ad78..d293223ab 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.3.1** (supports all STAC versions between 0.6.0 and 1.1.0) +Version: **3.3.2** (supports all STAC versions between 0.6.0 and 1.1.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-lock.json b/package-lock.json index b7c71d444..f0975cc73 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@radiantearth/stac-browser", - "version": "3.3.1", + "version": "3.3.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@radiantearth/stac-browser", - "version": "3.3.1", + "version": "3.3.2", "license": "ISC", "dependencies": { "@apidevtools/json-schema-ref-parser": "^10.1.0", diff --git a/package.json b/package.json index 5974bd001..18dd48087 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@radiantearth/stac-browser", - "version": "3.3.1", + "version": "3.3.2", "description": "A full-fledged UI in Vue for browsing and searching static STAC catalogs and STAC APIs.", "main": "src/main.js", "scripts": { @@ -53,7 +53,7 @@ "oidc-client-ts": "^3.0.1", "remove-markdown": "^0.5.0", "stac-layer": "^0.15.0", - "stac-node-validator": "2.0.0-beta.12", + "stac-node-validator": "2.0.0-beta.13", "streamsaver-js": "^2.0.7", "urijs": "^1.19.11", "v-clipboard": "3.0.0-next.1", diff --git a/src/StacBrowser.vue b/src/StacBrowser.vue index 0f011082f..2876f97e8 100644 --- a/src/StacBrowser.vue +++ b/src/StacBrowser.vue @@ -67,7 +67,6 @@ const router = new VueRouter({ base: CONFIG.pathPrefix, routes: getRoutes(CONFIG), scrollBehavior: (to, from, savedPosition) => { - console.log(to, from); if (to.path !== from.path) { return { x: 0, y: 0 }; }