Skip to content

Commit

Permalink
Bump version: 2.0.0 → 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Sep 30, 2020
1 parent f3a283b commit 86d535d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 19 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/Magpie/tree/master>`_ (latest)
------------------------------------------------------------------------------------

* Nothing yet.

`2.0.1 <https://github.com/Ouranosinc/Magpie/tree/2.0.1>`_ (2020-09-30)
------------------------------------------------------------------------------------

Features / Changes
~~~~~~~~~~~~~~~~~~~~~
* N/A
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 := magpie
APP_VERSION ?= 2.0.0
APP_VERSION ?= 2.0.1
APP_INI ?= $(APP_ROOT)/config/$(APP_NAME).ini

# guess OS (Linux, Darwin,...)
Expand Down
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ Behind the scene, it uses `Ziggurat-Foundations`_ and `Authomatic`_.
:alt: Requires Python 2.7, 3.5+
:target: https://www.python.org/getit

.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/Magpie/2.0.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/Ouranosinc/Magpie/2.0.1.svg
:alt: Commits since latest release
:target: https://github.com/Ouranosinc/Magpie/compare/2.0.0...master
:target: https://github.com/Ouranosinc/Magpie/compare/2.0.1...master

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

.. |dependencies| image:: https://pyup.io/repos/github/Ouranosinc/Magpie/shield.svg
:alt: Dependencies Status
Expand All @@ -45,9 +45,9 @@ Behind the scene, it uses `Ziggurat-Foundations`_ and `Authomatic`_.
:alt: Travis-CI Build Status (master branch)
:target: https://travis-ci.com/Ouranosinc/Magpie

.. |travis_tagged| image:: https://img.shields.io/travis/com/Ouranosinc/Magpie/2.0.0.svg?label=2.0.0
.. |travis_tagged| image:: https://img.shields.io/travis/com/Ouranosinc/Magpie/2.0.1.svg?label=2.0.1
:alt: Travis-CI Build Status (latest tag)
:target: https://github.com/Ouranosinc/Magpie/tree/2.0.0
:target: https://github.com/Ouranosinc/Magpie/tree/2.0.1

.. |readthedocs| image:: https://img.shields.io/readthedocs/pavics-magpie
:alt: Readthedocs Build Status (master branch)
Expand Down Expand Up @@ -118,8 +118,8 @@ Following most recent variants are available:
* - Magpie
- Twitcher |br|
(with integrated ``MagpieAdapter``)
* - pavics/magpie:2.0.0
- pavics/twitcher:magpie-2.0.0
* - pavics/magpie:2.0.1
- pavics/twitcher:magpie-2.0.1
* - pavics/magpie:latest
- pavics/twitcher:magpie-latest

Expand Down
2 changes: 1 addition & 1 deletion magpie/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
General meta information on the magpie package.
"""

__version__ = "2.0.0"
__version__ = "2.0.1"
__title__ = "Magpie"
__package__ = "magpie" # pylint: disable=W0622
__author__ = "Francois-Xavier Derue, Francis Charette-Migneault"
Expand Down
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.0.1
commit = True
tag = True
tag_name = {new_version}
Expand All @@ -17,15 +17,15 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:CHANGES.rst]
search =
search =
`Unreleased <https://github.com/Ouranosinc/Magpie/tree/master>`_ (latest)
------------------------------------------------------------------------------------
replace =
replace =
`Unreleased <https://github.com/Ouranosinc/Magpie/tree/master>`_ (latest)
------------------------------------------------------------------------------------

* Nothing yet.

`{new_version} <https://github.com/Ouranosinc/Magpie/tree/{new_version}>`_ ({now:%%Y-%%m-%%d})
------------------------------------------------------------------------------------

Expand All @@ -39,7 +39,7 @@ ignore-path = docs/_build
[flake8]
ignore = E501,W291,W503,W504
max-line-length = 120
exclude =
exclude =
.git,
__pycache__,
build,
Expand Down Expand Up @@ -70,18 +70,18 @@ combine_as_imports = false
branch = true
source = ./
include = magpie/*
omit =
omit =
setup.py
docs/*
tests/*
magpie/alembic/*
magpie/typedefs.py

[tool:pytest]
addopts =
addopts =
--strict
--tb=native
markers =
markers =
defaults: magpie default users, providers and views
register: magpie methods employed in 'register' module
login: magpie login operations
Expand Down

0 comments on commit 86d535d

Please sign in to comment.