From 4c3d8cc34304d1df16474f49bcd167a7e72e47b3 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Mon, 23 Jan 2023 21:26:08 -0500 Subject: [PATCH] update release version 1.0.beta1 --- README.md | 4 ++-- docker-compose.yml | 4 ++-- mqtt_metrics_collector/mqtt_metrics_collector.py | 2 -- wis2box-management/Dockerfile | 4 ++-- wis2box-management/setup.py | 2 +- wis2box-management/wis2box/__init__.py | 4 ++-- 6 files changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index bca29f468..9dfa71a7c 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ [![Tests](https://github.com/wmo-im/wis2box/workflows/tests%20%E2%9A%99%EF%B8%8F/badge.svg)](https://github.com/wmo-im/wis2box/actions/workflows/tests-docker.yml) [![Docs](https://readthedocs.org/projects/wis2box/badge)](https://docs.wis2box.wis.wmo.int) -## WIS 2.0 in a box +## WIS2 in a box -WIS 2.0 in a box provides a platform with the capabilities for centres to +WIS2 in a box provides a platform with the capabilities for centres to integrate their data holdings and publish them to the WMO Information System with a plug and play capability supporting data publishing, discovery and access. diff --git a/docker-compose.yml b/docker-compose.yml index bb397ab8c..e21125fe9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: wis2box-ui: container_name: wis2box-ui - image: ghcr.io/wmo-im/wis2box-ui:latest + image: ghcr.io/wmo-im/wis2box-ui:0.5.2 env_file: - default.env - dev.env @@ -22,7 +22,7 @@ services: wis2box-api: container_name: wis2box-api - image: ghcr.io/wmo-im/wis2box-api:latest + image: ghcr.io/wmo-im/wis2box-api:0.5.1 env_file: - default.env - dev.env diff --git a/mqtt_metrics_collector/mqtt_metrics_collector.py b/mqtt_metrics_collector/mqtt_metrics_collector.py index 82431166c..76994a36b 100644 --- a/mqtt_metrics_collector/mqtt_metrics_collector.py +++ b/mqtt_metrics_collector/mqtt_metrics_collector.py @@ -33,8 +33,6 @@ # de-register default-collectors from prometheus_client import REGISTRY, PROCESS_COLLECTOR, PLATFORM_COLLECTOR -__version__ = '0.6.dev1' - REGISTRY.unregister(PROCESS_COLLECTOR) REGISTRY.unregister(PLATFORM_COLLECTOR) diff --git a/wis2box-management/Dockerfile b/wis2box-management/Dockerfile index 29b98ceb0..a323dc4b9 100644 --- a/wis2box-management/Dockerfile +++ b/wis2box-management/Dockerfile @@ -43,8 +43,8 @@ RUN apt-get update -y \ && apt-get install -y -t bookworm libeccodes-data \ && apt-get install -y ${DEBIAN_PACKAGES} \ # install wis2box data pipeline dependencies - && pip3 install --no-cache-dir https://github.com/wmo-im/csv2bufr/archive/master.zip \ - && pip3 install --no-cache-dir https://github.com/wmo-im/bufr2geojson/archive/refs/tags/v0.4.1.zip \ + && pip3 install --no-cache-dir https://github.com/wmo-im/csv2bufr/archive/refs/tags/v0.4.0.zip \ + && pip3 install --no-cache-dir https://github.com/wmo-im/bufr2geojson/archive/refs/tags/v0.4.2.zip \ && pip3 install --no-cache-dir https://github.com/wmo-im/pymetdecoder/archive/master.zip \ && pip3 install --no-cache-dir https://github.com/wmo-im/synop2bufr/archive/main.zip \ # install geopython tooling diff --git a/wis2box-management/setup.py b/wis2box-management/setup.py index 5d46b4db1..b4a444008 100644 --- a/wis2box-management/setup.py +++ b/wis2box-management/setup.py @@ -63,7 +63,7 @@ def get_package_version(): 'wis 2.0' ] -DESCRIPTION = ('WIS 2.0 in a box provides a platform with the ' +DESCRIPTION = ('WIS2 in a box provides a platform with the ' 'capabilities for centres to integrate their data holdings ' 'and publish them to the WMO Information System with a plug ' 'and play capability supporting data publishing, discovery and ' diff --git a/wis2box-management/wis2box/__init__.py b/wis2box-management/wis2box/__init__.py index 7e75e192e..da9421fb0 100644 --- a/wis2box-management/wis2box/__init__.py +++ b/wis2box-management/wis2box/__init__.py @@ -19,7 +19,7 @@ # ############################################################################### -__version__ = '0.6.dev1' +__version__ = '1.0.beta1' import click @@ -34,7 +34,7 @@ @click.group() @click.version_option(version=__version__) def cli(): - """WIS 2.0 in a box""" + """WIS2 in a box""" pass