Skip to content

Commit

Permalink
Bump version: 2.4.0 → 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Dec 19, 2024
1 parent 430dc28 commit 4990fd5
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Changes
`Unreleased <https://github.com/Ouranosinc/cowbird/tree/master>`_ (latest)
------------------------------------------------------------------------------------

* Nothing yet.

`2.5.0 <https://github.com/Ouranosinc/cowbird/tree/2.5.0>`_ (2024-12-18)
------------------------------------------------------------------------------------

* Drop Python 3.8 support.
* Pin ``watchdog>=5`` to employ typing fixes.
* Pin ``requests>=2.32.3`` to fix security vulnerability.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
# Application
APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..)
APP_NAME := cowbird
APP_VERSION ?= 2.4.0
APP_VERSION ?= 2.5.0
APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini
APP_PORT ?= 7000

Expand Down
24 changes: 12 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ the resources under those services such that the complete ecosystem can seamless
:alt: Requires Python 3.7+
:target: https://www.python.org/getit

.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/cowbird/2.4.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/cowbird/2.5.0.svg
:alt: Commits since latest release
:target: https://github.com/Ouranosinc/cowbird/compare/2.4.0...master
:target: https://github.com/Ouranosinc/cowbird/compare/2.5.0...master

.. |version| image:: https://img.shields.io/badge/tag-2.4.0-blue.svg?style=flat
.. |version| image:: https://img.shields.io/badge/tag-2.5.0-blue.svg?style=flat
:alt: Latest Tag
:target: https://github.com/Ouranosinc/cowbird/tree/2.4.0
:target: https://github.com/Ouranosinc/cowbird/tree/2.5.0

.. |dependencies| image:: https://pyup.io/repos/github/Ouranosinc/cowbird/shield.svg
:alt: Dependencies Status
Expand All @@ -60,9 +60,9 @@ the resources under those services such that the complete ecosystem can seamless
:alt: Github Actions CI Build Status (master branch)
:target: https://github.com/Ouranosinc/cowbird/actions?query=branch%3Amaster

.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/Ouranosinc/cowbird/tests.yml?label=2.4.0&branch=2.4.0
.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/Ouranosinc/cowbird/tests.yml?label=2.5.0&branch=2.5.0
:alt: Github Actions CI Build Status (latest tag)
:target: https://github.com/Ouranosinc/cowbird/tree/2.4.0
:target: https://github.com/Ouranosinc/cowbird/tree/2.5.0

.. |readthedocs| image:: https://img.shields.io/readthedocs/pavics-cowbird
:alt: Readthedocs Build Status (master branch)
Expand Down Expand Up @@ -134,12 +134,12 @@ Following most recent variants are available:
- |cowbird_latest_websvc|_


.. |cowbird_tag_base| replace:: pavics/cowbird:2.4.0
.. _cowbird_tag_base: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.4.0
.. |cowbird_tag_worker| replace:: pavics/cowbird:2.4.0-worker
.. _cowbird_tag_worker: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.4.0-worker
.. |cowbird_tag_websvc| replace:: pavics/cowbird:2.4.0-webservice
.. _cowbird_tag_websvc: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.4.0-webservice
.. |cowbird_tag_base| replace:: pavics/cowbird:2.5.0
.. _cowbird_tag_base: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.5.0
.. |cowbird_tag_worker| replace:: pavics/cowbird:2.5.0-worker
.. _cowbird_tag_worker: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.5.0-worker
.. |cowbird_tag_websvc| replace:: pavics/cowbird:2.5.0-webservice
.. _cowbird_tag_websvc: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.5.0-webservice

.. |cowbird_latest_base| replace:: pavics/cowbird:latest
.. _cowbird_latest_base: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=latest
Expand Down
2 changes: 1 addition & 1 deletion cowbird/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
General meta information on the package.
"""

__version__ = "2.4.0"
__version__ = "2.5.0"
__title__ = "Cowbird"
__package__ = "cowbird" # pylint: disable=W0622
__author__ = "Ouranos inc., CRIM"
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="Cowbird base"
LABEL description.long="Cowbird middleware to manage interactions between various birds of the bird-house stack."
LABEL Maintainer="Ouranos, CRIM"
LABEL Vendor="Ouranos inc."
LABEL Version="2.4.0"
LABEL Version="2.5.0"

ENV COWBIRD_DIR=/opt/local/src/cowbird
ENV COWBIRD_CONFIG_DIR=${COWBIRD_DIR}/config
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 = 2.4.0
current_version = 2.5.0
commit = True
tag = True
tag_name = {new_version}
Expand Down

0 comments on commit 4990fd5

Please sign in to comment.