From b01f02831f130d32a5233b4bc36722ed48b78f74 Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 10:28:28 +0200 Subject: [PATCH 01/12] feat(viewer): add viewer --- .dockerignore | 5 ++ .github/workflows/Branch-protection.yml | 11 +++++ .github/workflows/docker-images.yml | 12 +++++ Dockerfile | 13 +++++ app.py | 11 +++++ requirements.in | 1 + requirements.txt | 66 +++++++++++++++++++++++++ 7 files changed, 119 insertions(+) create mode 100644 .dockerignore create mode 100644 .github/workflows/Branch-protection.yml create mode 100644 .github/workflows/docker-images.yml create mode 100644 Dockerfile create mode 100644 app.py create mode 100644 requirements.in create mode 100644 requirements.txt diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..f160c1d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +requirements.in +.github +.gitignore +README.md +.env \ No newline at end of file diff --git a/.github/workflows/Branch-protection.yml b/.github/workflows/Branch-protection.yml new file mode 100644 index 0000000..c18d3a6 --- /dev/null +++ b/.github/workflows/Branch-protection.yml @@ -0,0 +1,11 @@ +name: Check branch origin + +on: + pull_request: + +jobs: + check-branch-protection: + uses: Geode-solutions/actions/.github/workflows/branch-protection.yml@master + with: + branch_from: 'next' + branch_to: 'master' diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml new file mode 100644 index 0000000..276bb60 --- /dev/null +++ b/.github/workflows/docker-images.yml @@ -0,0 +1,12 @@ +name: Docker Image CD +on: + push: + branches: [ master, next ] +jobs: + docker-build-squash-push: + uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master + with: + image_name: 'geodeapp-viewer' + tag: ${{ github.ref_name }} + secrets: + TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..58ae2d9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.9-slim + +WORKDIR /app + +COPY . . +RUN pip3 install --user -r requirements.txt && pip3 cache purge +RUN pip3 install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +ENV PYTHONPATH="/usr/local:$PYTHONPATH" +ENV PYTHON_ENV="prod" + +CMD python app.py + +EXPOSE 1234 \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000..af40d59 --- /dev/null +++ b/app.py @@ -0,0 +1,11 @@ +from opengeodeweb_viewer import vtkw_server +import os +import dotenv + +basedir = os.path.abspath(os.path.dirname(__file__)) +dot_env_path = os.path.join(basedir, "./.env") +if os.path.isfile(dot_env_path): + dotenv.load_dotenv(dot_env_path) + +if __name__ == "__main__": + vtkw_server.run_server() diff --git a/requirements.in b/requirements.in new file mode 100644 index 0000000..e24c973 --- /dev/null +++ b/requirements.in @@ -0,0 +1 @@ +OpenGeodeWeb-Viewer \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a0ea5f9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,66 @@ +# +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: +# +# pip-compile requirements.in +# +aiohttp==3.9.3 + # via + # opengeodeweb-viewer + # wslink +aiosignal==1.3.1 + # via + # aiohttp + # opengeodeweb-viewer +async-timeout==4.0.3 + # via + # aiohttp + # opengeodeweb-viewer +attrs==23.2.0 + # via + # aiohttp + # jsonschema + # opengeodeweb-viewer + # referencing +frozenlist==1.4.1 + # via + # aiohttp + # aiosignal + # opengeodeweb-viewer +idna==3.6 + # via + # opengeodeweb-viewer + # yarl +jsonschema==4.21.1 + # via opengeodeweb-viewer +jsonschema-specifications==2023.12.1 + # via + # jsonschema + # opengeodeweb-viewer +multidict==6.0.5 + # via + # aiohttp + # opengeodeweb-viewer + # yarl +opengeodeweb-viewer==0.1.1 + # via -r requirements.in +python-dotenv==1.0.1 + # via opengeodeweb-viewer +referencing==0.33.0 + # via + # jsonschema + # jsonschema-specifications + # opengeodeweb-viewer +rpds-py==0.18.0 + # via + # jsonschema + # opengeodeweb-viewer + # referencing +websocket-client==1.7.0 + # via opengeodeweb-viewer +wslink==1.12.4 + # via opengeodeweb-viewer +yarl==1.9.4 + # via + # aiohttp + # opengeodeweb-viewer From 0c6ef5cac721a09f5ff36cca2b1b2515e9e0b265 Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 11:25:01 +0200 Subject: [PATCH 02/12] mode to python package --- Dockerfile | 2 +- pyproject.toml | 52 ++++++++++++++++++++++++++++ app.py => src/geodeapp_viewer/app.py | 0 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml rename app.py => src/geodeapp_viewer/app.py (100%) diff --git a/Dockerfile b/Dockerfile index 58ae2d9..27488f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,6 @@ RUN pip3 install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp3 ENV PYTHONPATH="/usr/local:$PYTHONPATH" ENV PYTHON_ENV="prod" -CMD python app.py +CMD python src/geodeapp_viewer/app.py EXPOSE 1234 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5294363 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,52 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + + +[project] +name = "GeodeApp-Viewer" +version = "0.0.0" +dynamic = ["dependencies"] +authors = [ + { name="Geode-solutions", email="team-web@geode-solutions.com" }, +] +description = "GeopeApp-Viewer is the viewer microservice of the GeodeApp" +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.optional-dependencies] +gpu = ["vtk == 9.*"] + +[project.urls] +"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer" +"Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/issues" + + +[tool.setuptools.dynamic] +dependencies = {file = ["requirements.txt"]} + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-data] +"geodeapp_viewer.rpc.schemas" = ["*.json"] + +[tool.semantic_release] +version_toml = [ + "pyproject.toml:project.version", +] + +[tool.semantic_release.remote.token] +env = "GH_TOKEN" + +[tool.semantic_release.branches.master] +match = "master" + +[tool.semantic_release.branches.next] +match = "next" +prerelease = true diff --git a/app.py b/src/geodeapp_viewer/app.py similarity index 100% rename from app.py rename to src/geodeapp_viewer/app.py From 2247d9c84b16b2f67662065a483dde906a4916d6 Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 12:15:49 +0200 Subject: [PATCH 03/12] requirements_gpu specific --- .dockerignore | 3 +- .pypirc | 6 +++ pyproject.toml | 2 +- requirements_gpu.in | 1 + requirements_gpu.txt | 96 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 .pypirc create mode 100644 requirements_gpu.in create mode 100644 requirements_gpu.txt diff --git a/.dockerignore b/.dockerignore index f160c1d..36b6de9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,4 +2,5 @@ requirements.in .github .gitignore README.md -.env \ No newline at end of file +.env +.pypirc \ No newline at end of file diff --git a/.pypirc b/.pypirc new file mode 100644 index 0000000..3c0c6f3 --- /dev/null +++ b/.pypirc @@ -0,0 +1,6 @@ +[distutils] +index-servers = pypi + +[pypi] +username = __token__ +password = diff --git a/pyproject.toml b/pyproject.toml index 5294363..e6d1e9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ gpu = ["vtk == 9.*"] [tool.setuptools.dynamic] -dependencies = {file = ["requirements.txt"]} +dependencies = {file = ["requirements_gpu.txt"]} [tool.setuptools.packages.find] where = ["src"] diff --git a/requirements_gpu.in b/requirements_gpu.in new file mode 100644 index 0000000..caef2cb --- /dev/null +++ b/requirements_gpu.in @@ -0,0 +1 @@ +OpenGeodeWeb-Viewer[gpu] \ No newline at end of file diff --git a/requirements_gpu.txt b/requirements_gpu.txt new file mode 100644 index 0000000..2dfb862 --- /dev/null +++ b/requirements_gpu.txt @@ -0,0 +1,96 @@ +# +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: +# +# pip-compile requirements_gpu.in +# +aiohttp==3.9.3 + # via + # opengeodeweb-viewer + # wslink +aiosignal==1.3.1 + # via + # aiohttp + # opengeodeweb-viewer +async-timeout==4.0.3 + # via + # aiohttp + # opengeodeweb-viewer +attrs==23.2.0 + # via + # aiohttp + # jsonschema + # opengeodeweb-viewer + # referencing +contourpy==1.2.0 + # via matplotlib +cycler==0.12.1 + # via matplotlib +fonttools==4.50.0 + # via matplotlib +frozenlist==1.4.1 + # via + # aiohttp + # aiosignal + # opengeodeweb-viewer +idna==3.6 + # via + # opengeodeweb-viewer + # yarl +importlib-resources==6.4.0 + # via matplotlib +jsonschema==4.21.1 + # via opengeodeweb-viewer +jsonschema-specifications==2023.12.1 + # via + # jsonschema + # opengeodeweb-viewer +kiwisolver==1.4.5 + # via matplotlib +matplotlib==3.8.3 + # via vtk +multidict==6.0.5 + # via + # aiohttp + # opengeodeweb-viewer + # yarl +numpy==1.26.4 + # via + # contourpy + # matplotlib +opengeodeweb-viewer[gpu]==0.1.1 + # via -r requirements_gpu.in +packaging==24.0 + # via matplotlib +pillow==10.3.0 + # via matplotlib +pyparsing==3.1.2 + # via matplotlib +python-dateutil==2.9.0.post0 + # via matplotlib +python-dotenv==1.0.1 + # via opengeodeweb-viewer +referencing==0.33.0 + # via + # jsonschema + # jsonschema-specifications + # opengeodeweb-viewer +rpds-py==0.18.0 + # via + # jsonschema + # opengeodeweb-viewer + # referencing +six==1.16.0 + # via python-dateutil +vtk==9.3.0 + # via opengeodeweb-viewer +websocket-client==1.7.0 + # via opengeodeweb-viewer +wslink==1.12.4 + # via opengeodeweb-viewer +yarl==1.9.4 + # via + # aiohttp + # opengeodeweb-viewer +zipp==3.18.1 + # via importlib-resources From cf0419d0bd0bee39569582291693a7e5510aea38 Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 13:26:22 +0200 Subject: [PATCH 04/12] update .dockerignore --- .dockerignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 36b6de9..10c0b03 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,8 @@ -requirements.in .github .gitignore README.md .env -.pypirc \ No newline at end of file +.pypirc +requirements.in +requirements_gpu.in +requirements_gpu.txt \ No newline at end of file From b31fe8662a3c233986bcb73b359742fd8bcb1ccb Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 14:17:39 +0200 Subject: [PATCH 05/12] fix(CICD): add pypi publish --- .github/workflows/CICD.yml | 47 +++++++++++++++++++++++++++++ .github/workflows/docker-images.yml | 12 -------- 2 files changed, 47 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/CICD.yml delete mode 100644 .github/workflows/docker-images.yml diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml new file mode 100644 index 0000000..9161845 --- /dev/null +++ b/.github/workflows/CICD.yml @@ -0,0 +1,47 @@ +name: CICD + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master' + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + token: ${{ secrets.TOKEN }} + - name: Python Semantic Release + uses: python-semantic-release/python-semantic-release@master + id: semantic-release + with: + github_token: ${{ secrets.TOKEN }} + - name: Build + run: | + python3 -m pip install --upgrade build + python3 -m build + - name: Upload PYPI + if: steps.semantic-release.outputs.released == 'true' + run: | + python3 -m pip install twine + python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} + - name: Merge master -> next + if: github.ref == 'refs/heads/master' + uses: devmasx/merge-branch@master + with: + type: now + from_branch: master + target_branch: next + github_token: ${{ github.token }} + + + docker-build-squash-push: + uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master + if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master' + with: + image_name: 'geodeapp-viewer' + tag: ${{ github.ref_name }} + secrets: + TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml deleted file mode 100644 index 276bb60..0000000 --- a/.github/workflows/docker-images.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Docker Image CD -on: - push: - branches: [ master, next ] -jobs: - docker-build-squash-push: - uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master - with: - image_name: 'geodeapp-viewer' - tag: ${{ github.ref_name }} - secrets: - TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file From 32c2827de66f3bec8c702162a39a7a45f34f7abc Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 2 Apr 2024 12:24:32 +0000 Subject: [PATCH 06/12] 0.1.0-rc.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c791d9e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# CHANGELOG + + + +## v0.1.0-rc.1 (2024-04-02) + +### Feature + +* feat(viewer): add viewer ([`b01f028`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/b01f02831f130d32a5233b4bc36722ed48b78f74)) + +### Fix + +* fix(CICD): add pypi publish ([`b31fe86`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/b31fe8662a3c233986bcb73b359742fd8bcb1ccb)) + +### Unknown + +* Merge pull request #2 from Geode-solutions/fix/pypi + +fix(CICD): add pypi publish ([`32336c6`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/32336c69e3db2712c154d3b2af30965504622b27)) + +* Merge pull request #1 from Geode-solutions/feat/viewer + +feat(viewer): add viewer ([`d59e63b`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/d59e63bcc8f1d36039a6b1f556faae8033bd4f0e)) + +* update .dockerignore ([`cf0419d`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/cf0419d0bd0bee39569582291693a7e5510aea38)) + +* requirements_gpu specific ([`2247d9c`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/2247d9c84b16b2f67662065a483dde906a4916d6)) + +* mode to python package ([`0c6ef5c`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/0c6ef5cac721a09f5ff36cca2b1b2515e9e0b265)) + +* Initial commit ([`d1d1909`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/d1d19099404133803d7f6cd139d073adc405df73)) diff --git a/pyproject.toml b/pyproject.toml index e6d1e9b..bb16e03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "GeodeApp-Viewer" -version = "0.0.0" +version = "0.1.0-rc.1" dynamic = ["dependencies"] authors = [ { name="Geode-solutions", email="team-web@geode-solutions.com" }, From 0ba50a6cc4d7cfc917082ea91ee77c64b63d9849 Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Tue, 2 Apr 2024 14:54:51 +0200 Subject: [PATCH 07/12] fix(gh actions): test trigger semantic-release From db2194906d057b245a405a98d981e96ac7534b5d Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 2 Apr 2024 12:56:07 +0000 Subject: [PATCH 08/12] 0.1.0-rc.2 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c791d9e..33e2e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.1.0-rc.2 (2024-04-02) + +### Fix + +* fix(gh actions): test trigger semantic-release ([`0ba50a6`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/0ba50a6cc4d7cfc917082ea91ee77c64b63d9849)) + + ## v0.1.0-rc.1 (2024-04-02) ### Feature diff --git a/pyproject.toml b/pyproject.toml index bb16e03..a45b220 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "GeodeApp-Viewer" -version = "0.1.0-rc.1" +version = "0.1.0-rc.2" dynamic = ["dependencies"] authors = [ { name="Geode-solutions", email="team-web@geode-solutions.com" }, From 81096ab8667df5d2c9316c320bdb4af2cf4c92e8 Mon Sep 17 00:00:00 2001 From: SpliiT Date: Tue, 11 Jun 2024 10:13:42 +0200 Subject: [PATCH 09/12] added script --- pyproject.toml | 3 +++ requirements.txt | 2 +- src/geodeapp_viewer/app.py | 7 ++++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a45b220..9f06f6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,9 @@ gpu = ["vtk == 9.*"] "Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer" "Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/issues" +[project.scripts] +geodeapp_viewer = "geodeapp_viewer.app:run_viewer" + [tool.setuptools.dynamic] dependencies = {file = ["requirements_gpu.txt"]} diff --git a/requirements.txt b/requirements.txt index a0ea5f9..f31b6b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.9 +# This file is autogenerated by pip-compile with Python 3.10 # by the following command: # # pip-compile requirements.in diff --git a/src/geodeapp_viewer/app.py b/src/geodeapp_viewer/app.py index af40d59..6d260d1 100644 --- a/src/geodeapp_viewer/app.py +++ b/src/geodeapp_viewer/app.py @@ -7,5 +7,10 @@ if os.path.isfile(dot_env_path): dotenv.load_dotenv(dot_env_path) -if __name__ == "__main__": + +def run_viewer(): vtkw_server.run_server() + + +if __name__ == "__main__": + run_viewer() From 54d5a1158ac66582d91cafe7492bb9955d1a62ef Mon Sep 17 00:00:00 2001 From: SpliiT Date: Tue, 11 Jun 2024 10:52:09 +0200 Subject: [PATCH 10/12] links edit --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9f06f6c..69875f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,8 +23,8 @@ classifiers = [ gpu = ["vtk == 9.*"] [project.urls] -"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer" -"Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/issues" +"Homepage" = "https://github.com/Geode-solutions/GeodeApp-Viewer" +"Bug Tracker" = "https://github.com/Geode-solutions/GeodeApp-Viewer/issues" [project.scripts] geodeapp_viewer = "geodeapp_viewer.app:run_viewer" From ddef573231d93632e931aa6426afdda1a76f9e70 Mon Sep 17 00:00:00 2001 From: SpliiT Date: Tue, 11 Jun 2024 16:16:11 +0200 Subject: [PATCH 11/12] feat(SetupViewer): Trigger Semantic Realease --- .gitignore | 2 +- requirements.in | 2 +- src/__init__.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 src/__init__.py diff --git a/.gitignore b/.gitignore index 68bc17f..6769e21 100644 --- a/.gitignore +++ b/.gitignore @@ -157,4 +157,4 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +#.idea/ \ No newline at end of file diff --git a/requirements.in b/requirements.in index e24c973..452ecb7 100644 --- a/requirements.in +++ b/requirements.in @@ -1 +1 @@ -OpenGeodeWeb-Viewer \ No newline at end of file +opengeodeweb-viewer \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1 @@ + From d45bb8677b458002227a89791054d416ef4a5136 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Tue, 11 Jun 2024 14:25:10 +0000 Subject: [PATCH 12/12] 0.1.0-rc.3 Automatically generated by python-semantic-release --- CHANGELOG.md | 21 +++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33e2e91..dc60592 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## v0.1.0-rc.3 (2024-06-11) + +### Feature + +* feat(SetupViewer): Trigger Semantic Realease ([`ddef573`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/ddef573231d93632e931aa6426afdda1a76f9e70)) + +### Unknown + +* Merge pull request #4 from Geode-solutions/feat_tao + +feat(SetupViewer): Trigger Semantic Realease ([`def48c0`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/def48c08a2cff28bcf82bcfa4a455ece08dda750)) + +* Merge pull request #3 from Geode-solutions/feat_tao_viewer + +added script ([`d7b331d`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/d7b331d36a3c761e9c41dbaf2996e20fcb5f2c58)) + +* links edit ([`54d5a11`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/54d5a1158ac66582d91cafe7492bb9955d1a62ef)) + +* added script ([`81096ab`](https://github.com/Geode-solutions/GeodeApp-Viewer/commit/81096ab8667df5d2c9316c320bdb4af2cf4c92e8)) + + ## v0.1.0-rc.2 (2024-04-02) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 69875f1..cd8cb27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "GeodeApp-Viewer" -version = "0.1.0-rc.2" +version = "0.1.0-rc.3" dynamic = ["dependencies"] authors = [ { name="Geode-solutions", email="team-web@geode-solutions.com" },