Skip to content

Commit

Permalink
Bump version: 4.2.0 → 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Oct 20, 2021
1 parent 6319428 commit c7990fc
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ Changes
`Unreleased <https://github.com/crim-ca/weaver/tree/master>`_ (latest)
========================================================================

Changes:
--------
- No change.

Fixes:
------
- No change.

`4.2.1 <https://github.com/crim-ca/weaver/tree/4.2.1>`_ (2021-10-20)
========================================================================

Changes:
--------
- Add more frequent ``Job`` updates of execution checkpoint pushed to database in order to avoid inconsistent statuses
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?= 4.2.0
APP_VERSION ?= 4.2.1
APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini
DOCKER_REPO ?= pavics/weaver
#DOCKER_REPO ?= docker-registry.crim.ca/ogc/weaver
Expand Down
20 changes: 10 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ For more details, see `Configuration`_ section.
:alt: Requires Python 3.6+
:target: https://www.python.org/getit

.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/4.2.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/4.2.1.svg
:alt: Commits since latest release
:target: https://github.com/crim-ca/weaver/compare/4.2.0...master
:target: https://github.com/crim-ca/weaver/compare/4.2.1...master

.. |version| image:: https://img.shields.io/badge/latest%20version-4.2.0-blue
.. |version| image:: https://img.shields.io/badge/latest%20version-4.2.1-blue
:alt: Latest Tagged Version
:target: https://github.com/crim-ca/weaver/tree/4.2.0
:target: https://github.com/crim-ca/weaver/tree/4.2.1

.. |requires| image:: https://requires.io/github/crim-ca/weaver/requirements.svg?branch=master
:alt: Requirements Status
Expand All @@ -61,9 +61,9 @@ For more details, see `Configuration`_ section.
: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/workflow/status/crim-ca/weaver/Tests/4.2.0?label=4.2.0
.. |github_tagged| image:: https://img.shields.io/github/workflow/status/crim-ca/weaver/Tests/4.2.1?label=4.2.1
:alt: Github Actions CI Build Status (latest tag)
:target: https://github.com/crim-ca/weaver/actions?query=workflow%3ATests+branch%3A4.2.0
:target: https://github.com/crim-ca/weaver/actions?query=workflow%3ATests+branch%3A4.2.1

.. |readthedocs| image:: https://img.shields.io/readthedocs/pavics-weaver
:alt: ReadTheDocs Build Status (master branch)
Expand All @@ -75,7 +75,7 @@ For more details, see `Configuration`_ section.

.. 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/4.2.0?label=tag%20status
.. |docker_build_status| image:: https://img.shields.io/docker/v/pavics/weaver/4.2.1?label=tag%20status
:alt: Docker Build Status (latest version)
:target: https://hub.docker.com/r/pavics/weaver/tags

Expand Down Expand Up @@ -133,12 +133,12 @@ Docker image repositories:

::

$ docker pull pavics/weaver:4.2.0
$ docker pull pavics/weaver:4.2.1

For convenience, following tags are also available:

- ``weaver:4.2.0-manager``: `Weaver` image that will run the API for WPS process and job management.
- ``weaver:4.2.0-worker``: `Weaver` image that will run the process job runner application.
- ``weaver:4.2.1-manager``: `Weaver` image that will run the API for WPS process and job management.
- ``weaver:4.2.1-worker``: `Weaver` image that will run the process job runner application.

Following links correspond to existing servers with `Weaver` configured as *EMS*/*ADES* instances respectively.

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-base
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
LABEL vendor="CRIM"
LABEL version="4.2.0"
LABEL version="4.2.1"

# setup paths
ENV APP_DIR=/opt/local/src/weaver
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.2.0
current_version = 4.2.1
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion weaver/__meta__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__name__ = "weaver"
__title__ = "Weaver"
__version__ = "4.2.0"
__version__ = "4.2.1"
__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"
Expand Down

0 comments on commit c7990fc

Please sign in to comment.