From 72cc7d54143b423f7679663d9bb0be94e9e71347 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Thu, 12 Sep 2024 19:09:50 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=205.8.0=20=E2=86=92=205.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 13 +++++++++++++ Makefile | 2 +- README.rst | 20 ++++++++++---------- docker/Dockerfile-base | 2 +- setup.cfg | 2 +- weaver/__meta__.py | 2 +- 6 files changed, 27 insertions(+), 14 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5b7ce4aa7..281639ae9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,19 @@ Changes `Unreleased `_ (latest) ======================================================================== +Changes: +-------- +- No change. + +Fixes: +------ +- No change. + +.. _changes_5.9.0: + +`5.9.0 `_ (2024-09-12) +======================================================================== + Changes: -------- - Add `CWL` schema definitions with ``weaver`` namespace diff --git a/Makefile b/Makefile index 2acbe00ef..be0a523c7 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) # Application APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..) APP_NAME := $(shell basename $(APP_ROOT)) -APP_VERSION ?= 5.8.0 +APP_VERSION ?= 5.9.0 APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini DOCKER_REPO ?= pavics/weaver #DOCKER_REPO ?= docker-registry.crim.ca/ogc/weaver diff --git a/README.rst b/README.rst index 0a5c18910..203d04d1a 100644 --- a/README.rst +++ b/README.rst @@ -55,13 +55,13 @@ for each process. :alt: Requires Python 3.8+ :target: https://www.python.org/getit -.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/5.8.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/5.9.0.svg :alt: Commits since latest release - :target: https://github.com/crim-ca/weaver/compare/5.8.0...master + :target: https://github.com/crim-ca/weaver/compare/5.9.0...master -.. |version| image:: https://img.shields.io/badge/latest%20version-5.8.0-blue +.. |version| image:: https://img.shields.io/badge/latest%20version-5.9.0-blue :alt: Latest Tagged Version - :target: https://github.com/crim-ca/weaver/tree/5.8.0 + :target: https://github.com/crim-ca/weaver/tree/5.9.0 .. |deps| image:: https://img.shields.io/librariesio/github/crim-ca/weaver :alt: Libraries.io Dependencies Status @@ -75,9 +75,9 @@ for each process. :alt: Github Actions CI Build Status (master branch) :target: https://github.com/crim-ca/weaver/actions?query=workflow%3ATests+branch%3Amaster -.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/crim-ca/weaver/tests.yml?label=5.8.0&branch=5.8.0 +.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/crim-ca/weaver/tests.yml?label=5.9.0&branch=5.9.0 :alt: Github Actions CI Build Status (latest tag) - :target: https://github.com/crim-ca/weaver/actions?query=workflow%3ATests+branch%3A5.8.0 + :target: https://github.com/crim-ca/weaver/actions?query=workflow%3ATests+branch%3A5.9.0 .. |readthedocs| image:: https://img.shields.io/readthedocs/pavics-weaver :alt: ReadTheDocs Build Status (master branch) @@ -89,7 +89,7 @@ for each process. .. below shield will either indicate the targeted version or 'tag not found' .. since docker tags are pushed following manual builds by CI, they are not automatic and no build artifact exists -.. |docker_build_status| image:: https://img.shields.io/docker/v/pavics/weaver/5.8.0?label=tag%20status +.. |docker_build_status| image:: https://img.shields.io/docker/v/pavics/weaver/5.9.0?label=tag%20status :alt: Docker Build Status (latest version) :target: https://hub.docker.com/r/pavics/weaver/tags @@ -237,12 +237,12 @@ For a prebuilt image, pull as follows: .. code-block:: shell - docker pull pavics/weaver:5.8.0 + docker pull pavics/weaver:5.9.0 For convenience, following tags are also available: -- ``weaver:5.8.0-manager``: `Weaver` image that will run the API for WPS process and job management. -- ``weaver:5.8.0-worker``: `Weaver` image that will run the process job runner application. +- ``weaver:5.9.0-manager``: `Weaver` image that will run the API for WPS process and job management. +- ``weaver:5.9.0-worker``: `Weaver` image that will run the process job runner application. Following links correspond to existing servers with `Weaver` configured as *EMS* or *ADES* instances respectively. diff --git a/docker/Dockerfile-base b/docker/Dockerfile-base index 3ffc65eb4..4e163fc29 100644 --- a/docker/Dockerfile-base +++ b/docker/Dockerfile-base @@ -3,7 +3,7 @@ LABEL description.short="Weaver Base" LABEL description.long="Workflow Execution Management Service (EMS); Application, Deployment and Execution Service (ADES)" LABEL maintainer="Francis Charette-Migneault " LABEL vendor="CRIM" -LABEL version="5.8.0" +LABEL version="5.9.0" # setup paths ENV APP_DIR=/opt/local/src/weaver diff --git a/setup.cfg b/setup.cfg index e43fa3c7c..5175060cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.8.0 +current_version = 5.9.0 commit = True tag = True tag_name = {new_version} diff --git a/weaver/__meta__.py b/weaver/__meta__.py index 2e1c3be39..290eaf79a 100644 --- a/weaver/__meta__.py +++ b/weaver/__meta__.py @@ -1,6 +1,6 @@ __name__ = "weaver" __title__ = "Weaver" -__version__ = "5.8.0" +__version__ = "5.9.0" __description__ = "Workflow Execution Management Service (EMS); Application, Deployment and Execution Service (ADES)." __source_repository__ = "https://github.com/crim-ca/weaver" __docker_repository__ = "https://hub.docker.com/r/pavics/weaver"