Skip to content

Commit 2e57bef

Browse files
committed
Bump version: 4.1.0 → 4.1.1
1 parent 465faba commit 2e57bef

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

CHANGES.rst

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ Changes
99
`Unreleased <https://github.com/Ouranosinc/Magpie/tree/master>`_ (latest)
1010
------------------------------------------------------------------------------------
1111

12+
* Nothing new for the moment.
13+
14+
.. _changes_4.1.1:
15+
16+
`4.1.1 <https://github.com/Ouranosinc/Magpie/tree/4.1.1>`_ (2024-07-23)
17+
------------------------------------------------------------------------------------
18+
1219
Features / Changes
1320
~~~~~~~~~~~~~~~~~~~~~
1421

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
1919
# Application
2020
APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..)
2121
APP_NAME := magpie
22-
APP_VERSION ?= 4.1.0
22+
APP_VERSION ?= 4.1.1
2323
APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini
2424

2525
# guess OS (Linux, Darwin,...)

README.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ Behind the scene, it uses `Ziggurat-Foundations`_ and `Authomatic`_.
5252
:alt: Python 3.11+ recommended
5353
:target: https://www.python.org/getit
5454

55-
.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/Magpie/4.1.0.svg
55+
.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/Magpie/4.1.1.svg
5656
:alt: Commits since latest release
57-
:target: https://github.com/Ouranosinc/Magpie/compare/4.1.0...master
57+
:target: https://github.com/Ouranosinc/Magpie/compare/4.1.1...master
5858

59-
.. |version| image:: https://img.shields.io/badge/tag-4.1.0-blue.svg?style=flat
59+
.. |version| image:: https://img.shields.io/badge/tag-4.1.1-blue.svg?style=flat
6060
:alt: Latest Tag
61-
:target: https://github.com/Ouranosinc/Magpie/tree/4.1.0
61+
:target: https://github.com/Ouranosinc/Magpie/tree/4.1.1
6262

6363
.. |dependencies| image:: https://pyup.io/repos/github/Ouranosinc/Magpie/shield.svg
6464
:alt: Dependencies Status
@@ -68,9 +68,9 @@ Behind the scene, it uses `Ziggurat-Foundations`_ and `Authomatic`_.
6868
:alt: Github Actions CI Build Status (master branch)
6969
:target: https://github.com/Ouranosinc/Magpie/actions?query=workflow%3ATests+branch%3Amaster
7070

71-
.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/Ouranosinc/Magpie/tests.yml?label=4.1.0&branch=4.1.0
71+
.. |github_tagged| image:: https://img.shields.io/github/actions/workflow/status/Ouranosinc/Magpie/tests.yml?label=4.1.1&branch=4.1.1
7272
:alt: Github Actions CI Build Status (latest tag)
73-
:target: https://github.com/Ouranosinc/Magpie/actions?query=workflow%3ATests+branch%3A4.1.0
73+
:target: https://github.com/Ouranosinc/Magpie/actions?query=workflow%3ATests+branch%3A4.1.1
7474

7575
.. |readthedocs| image:: https://img.shields.io/readthedocs/pavics-magpie
7676
:alt: Readthedocs Build Status (master branch)
@@ -98,7 +98,7 @@ Behind the scene, it uses `Ziggurat-Foundations`_ and `Authomatic`_.
9898

9999
.. |docker_semver_tag| image:: https://img.shields.io/docker/v/pavics/magpie?label=version&sort=semver
100100
:alt: Docker Version Tag
101-
:target: https://hub.docker.com/r/pavics/magpie/tags?page=1&ordering=last_updated&name=4.1.0
101+
:target: https://hub.docker.com/r/pavics/magpie/tags?page=1&ordering=last_updated&name=4.1.1
102102

103103
.. end-badges
104104
@@ -142,8 +142,8 @@ Following most recent variants are available:
142142
* - Magpie
143143
- Twitcher |br|
144144
(with integrated ``MagpieAdapter``)
145-
* - ``pavics/magpie:4.1.0``
146-
- ``pavics/twitcher:magpie-4.1.0``
145+
* - ``pavics/magpie:4.1.1``
146+
- ``pavics/twitcher:magpie-4.1.1``
147147
* - ``pavics/magpie:latest``
148148
- ``pavics/twitcher:magpie-latest``
149149

magpie/__meta__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
General meta information on the magpie package.
33
"""
44

5-
__version__ = "4.1.0"
5+
__version__ = "4.1.1"
66
__title__ = "Magpie"
77
__package__ = "magpie" # pylint: disable=W0622
88
__author__ = "Francois-Xavier Derue, Francis Charette-Migneault"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.0
2+
current_version = 4.1.1
33
commit = True
44
tag = True
55
tag_name = {new_version}

0 commit comments

Comments
 (0)