From 315143dd9751fa9359dd138ca3dcac44c7e222d9 Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 17 Jul 2024 09:35:17 -0700 Subject: [PATCH 1/3] keplergl v0.3.4a1 --- .github/workflows/build-publish-pypi.yml | 2 +- bindings/kepler.gl-jupyter/js/package.json | 2 +- bindings/kepler.gl-jupyter/keplergl/_version.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-publish-pypi.yml b/.github/workflows/build-publish-pypi.yml index bd84d4167a..51dd0fcc56 100644 --- a/.github/workflows/build-publish-pypi.yml +++ b/.github/workflows/build-publish-pypi.yml @@ -57,7 +57,7 @@ jobs: - name: Check Release Tag id: check-tag run: | - if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+-jupyter$ ]]; then + if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+([a|b][0-9])?-jupyter$ ]]; then echo ::set-output name=publish::true fi diff --git a/bindings/kepler.gl-jupyter/js/package.json b/bindings/kepler.gl-jupyter/js/package.json index 022bf6f2d6..33180f8c16 100644 --- a/bindings/kepler.gl-jupyter/js/package.json +++ b/bindings/kepler.gl-jupyter/js/package.json @@ -1,6 +1,6 @@ { "name": "keplergl-jupyter", - "version": "0.3.4a0", + "version": "0.3.4a1", "description": "This is a simple jupyter widget for kepler.gl, an advanced geo-spatial visualization tool, to render large-scale interactive maps.", "author": "Shan He", "license": "MIT", diff --git a/bindings/kepler.gl-jupyter/keplergl/_version.py b/bindings/kepler.gl-jupyter/keplergl/_version.py index 5faf6b8f39..4fb12f444c 100644 --- a/bindings/kepler.gl-jupyter/keplergl/_version.py +++ b/bindings/kepler.gl-jupyter/keplergl/_version.py @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MIT # Copyright contributors to the kepler.gl project -version_info = (0, 3, 4, 'alpha', 0) +version_info = (0, 3, 4, 'alpha', 1) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''} @@ -15,4 +15,4 @@ # the widget models, or if the serialized format changes. # # The major version needs to match that of the JS package. -EXTENSION_SPEC_VERSION = '^0.3.4' +EXTENSION_SPEC_VERSION = '^0.3.4a1' From 383bf30a4d7b15d502b3bc08d01ea8b4bce82734 Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 17 Jul 2024 11:09:37 -0700 Subject: [PATCH 2/3] test v0.3.4a2 --- bindings/kepler.gl-jupyter/js/package.json | 2 +- bindings/kepler.gl-jupyter/keplergl/_version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/kepler.gl-jupyter/js/package.json b/bindings/kepler.gl-jupyter/js/package.json index 33180f8c16..fe566948eb 100644 --- a/bindings/kepler.gl-jupyter/js/package.json +++ b/bindings/kepler.gl-jupyter/js/package.json @@ -1,6 +1,6 @@ { "name": "keplergl-jupyter", - "version": "0.3.4a1", + "version": "0.3.4a2", "description": "This is a simple jupyter widget for kepler.gl, an advanced geo-spatial visualization tool, to render large-scale interactive maps.", "author": "Shan He", "license": "MIT", diff --git a/bindings/kepler.gl-jupyter/keplergl/_version.py b/bindings/kepler.gl-jupyter/keplergl/_version.py index 4fb12f444c..9121267ce9 100644 --- a/bindings/kepler.gl-jupyter/keplergl/_version.py +++ b/bindings/kepler.gl-jupyter/keplergl/_version.py @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MIT # Copyright contributors to the kepler.gl project -version_info = (0, 3, 4, 'alpha', 1) +version_info = (0, 3, 4, 'alpha', 2) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''} @@ -15,4 +15,4 @@ # the widget models, or if the serialized format changes. # # The major version needs to match that of the JS package. -EXTENSION_SPEC_VERSION = '^0.3.4a1' +EXTENSION_SPEC_VERSION = '^0.3.4-a2' From ff373725950c7aa2c565a047cd203aeae9ebf93b Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 17 Jul 2024 13:42:26 -0700 Subject: [PATCH 3/3] test v0.3.4a3 --- bindings/kepler.gl-jupyter/RELEASE.md | 2 +- bindings/kepler.gl-jupyter/js/package.json | 2 +- bindings/kepler.gl-jupyter/js/webpack/build-html.js | 2 +- bindings/kepler.gl-jupyter/keplergl/_version.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bindings/kepler.gl-jupyter/RELEASE.md b/bindings/kepler.gl-jupyter/RELEASE.md index 10c96577cd..bc0c3a8993 100644 --- a/bindings/kepler.gl-jupyter/RELEASE.md +++ b/bindings/kepler.gl-jupyter/RELEASE.md @@ -25,7 +25,7 @@ Create a tag: `-jupyter` e.g. v0.3.4-jupyter ``` git tag -a -jupyter -m "-jupyter" -git push origin master && git push origin -jupyter +git push origin -jupyter ``` The new tag will trigger the Github Action `build-publish-pypi.yml`: __"Build KeplerGL Python and NPM packages"__. The packages will be built and tested, then published to NPM and PyPI using the secret tokens. diff --git a/bindings/kepler.gl-jupyter/js/package.json b/bindings/kepler.gl-jupyter/js/package.json index fe566948eb..9c590b4a93 100644 --- a/bindings/kepler.gl-jupyter/js/package.json +++ b/bindings/kepler.gl-jupyter/js/package.json @@ -1,6 +1,6 @@ { "name": "keplergl-jupyter", - "version": "0.3.4a2", + "version": "0.3.4a3", "description": "This is a simple jupyter widget for kepler.gl, an advanced geo-spatial visualization tool, to render large-scale interactive maps.", "author": "Shan He", "license": "MIT", diff --git a/bindings/kepler.gl-jupyter/js/webpack/build-html.js b/bindings/kepler.gl-jupyter/js/webpack/build-html.js index 68546f6ca6..504fc096d0 100644 --- a/bindings/kepler.gl-jupyter/js/webpack/build-html.js +++ b/bindings/kepler.gl-jupyter/js/webpack/build-html.js @@ -89,7 +89,7 @@ module.exports = (rules, plugins) => ({ `https://unpkg.com/styled-components@${VERSIONS.styledComponents}/dist/styled-components.min.js`, // load kepler.gl last - `https://unpkg.com/kepler.gl@${VERSIONS.keplergl}/umd/keplergl.min.js` + // `https://unpkg.com/kepler.gl@${VERSIONS.keplergl}/umd/keplergl.min.js` ], title: 'Kepler.gl' }), diff --git a/bindings/kepler.gl-jupyter/keplergl/_version.py b/bindings/kepler.gl-jupyter/keplergl/_version.py index 9121267ce9..7023c3a79d 100644 --- a/bindings/kepler.gl-jupyter/keplergl/_version.py +++ b/bindings/kepler.gl-jupyter/keplergl/_version.py @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MIT # Copyright contributors to the kepler.gl project -version_info = (0, 3, 4, 'alpha', 2) +version_info = (0, 3, 4, 'alpha', 3) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''} @@ -15,4 +15,4 @@ # the widget models, or if the serialized format changes. # # The major version needs to match that of the JS package. -EXTENSION_SPEC_VERSION = '^0.3.4-a2' +EXTENSION_SPEC_VERSION = '^0.3.4-a3'