Skip to content

Commit

Permalink
Bump version: 2.2.0 → 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Nov 30, 2023
1 parent b64c86d commit e2aa533
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Expand Up @@ -7,6 +7,11 @@ Changes
`Unreleased <https://github.com/Ouranosinc/cowbird/tree/master>`_ (latest)
------------------------------------------------------------------------------------

* Nothing yet.

`2.3.0 <https://github.com/Ouranosinc/cowbird/tree/2.3.0>`_ (2023-11-30)
------------------------------------------------------------------------------------

* Add optional key ``field`` and ``regex`` to be used in the ``sync_permissions`` section found in the config.
This allows to sync permissions using a field other than ``resource_full_name`` when creating the ``name:type``
from the segment ``ex.: /field1::type1/field2::type2``. Adds support to use ``resource_display_name``.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
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.2.0
APP_VERSION ?= 2.3.0
APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini
APP_PORT ?= 7000

Expand Down
24 changes: 12 additions & 12 deletions README.rst
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.2.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/cowbird/2.3.0.svg
:alt: Commits since latest release
:target: https://github.com/Ouranosinc/cowbird/compare/2.2.0...master
:target: https://github.com/Ouranosinc/cowbird/compare/2.3.0...master

.. |version| image:: https://img.shields.io/badge/tag-2.2.0-blue.svg?style=flat
.. |version| image:: https://img.shields.io/badge/tag-2.3.0-blue.svg?style=flat
:alt: Latest Tag
:target: https://github.com/Ouranosinc/cowbird/tree/2.2.0
:target: https://github.com/Ouranosinc/cowbird/tree/2.3.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.2.0&branch=2.2.0
.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/Ouranosinc/cowbird/tests.yml?label=2.3.0&branch=2.3.0
:alt: Github Actions CI Build Status (latest tag)
:target: https://github.com/Ouranosinc/cowbird/tree/2.2.0
:target: https://github.com/Ouranosinc/cowbird/tree/2.3.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.2.0
.. _cowbird_tag_base: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.2.0
.. |cowbird_tag_worker| replace:: pavics/cowbird:2.2.0-worker
.. _cowbird_tag_worker: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.2.0-worker
.. |cowbird_tag_websvc| replace:: pavics/cowbird:2.2.0-webservice
.. _cowbird_tag_websvc: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.2.0-webservice
.. |cowbird_tag_base| replace:: pavics/cowbird:2.3.0
.. _cowbird_tag_base: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.3.0
.. |cowbird_tag_worker| replace:: pavics/cowbird:2.3.0-worker
.. _cowbird_tag_worker: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.3.0-worker
.. |cowbird_tag_websvc| replace:: pavics/cowbird:2.3.0-webservice
.. _cowbird_tag_websvc: https://hub.docker.com/r/pavics/cowbird/tags?page=1&ordering=last_updated&name=2.3.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
Expand Up @@ -2,7 +2,7 @@
General meta information on the package.
"""

__version__ = "2.2.0"
__version__ = "2.3.0"
__title__ = "Cowbird"
__package__ = "cowbird" # pylint: disable=W0622
__author__ = "Ouranos inc., CRIM"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-base
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.2.0"
LABEL Version="2.3.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
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.0
current_version = 2.3.0
commit = True
tag = True
tag_name = {new_version}
Expand Down

0 comments on commit e2aa533

Please sign in to comment.