Skip to content

Commit

Permalink
Prepare next version 1.2.14 (unreleased)
Browse files Browse the repository at this point in the history
  • Loading branch information
tantale committed Sep 5, 2021
1 parent 10c5f33 commit f5eebcd
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.13
current_version = 1.2.14
commit = True
tag = False
message = Prepare next version {new_version} (unreleased)
Expand All @@ -23,3 +23,4 @@ replace = release = "{new_version}"
[bumpversion:file:python-deprecated.spec]
search = (?<=Version:\s+){current_version}
replace = {new_version}

6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
(only in comment or documentation).


v1.2.14 (unreleased)
====================

Bug fix release


v1.2.13 (2021-09-05)
====================

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# What Python version is installed where:
# http://www.appveyor.com/docs/installed-software#python

version: 1.2.13.{build}
version: 1.2.14.{build}

environment:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions deprecated/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"""

__version__ = "1.2.13"
__version__ = "1.2.14"
__author__ = u"Laurent LAPORTE <[email protected]>"
__date__ = "2021-09-05"
__date__ = "unreleased"
__credits__ = "(c) Laurent LAPORTE"

from deprecated.classic import deprecated
Binary file modified docs/source/_static/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "1.2.13"
release = "1.2.14"
# The short X.Y version.
version = release.rpartition('.')[0]

Expand Down
2 changes: 1 addition & 1 deletion python-deprecated.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global pkgname deprecated

Name: python-%{pkgname}
Version: 1.2.13
Version: 1.2.14
Release: 1%{?dist}
Summary: Python decorator to deprecate old python classes, functions or methods
License: MIT
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def function_three():

setup(
name='Deprecated',
version='1.2.13',
version='1.2.14',
url='https://github.com/tantale/deprecated',
project_urls={
"Documentation": "https://deprecated.readthedocs.io/en/latest/",
Expand Down

0 comments on commit f5eebcd

Please sign in to comment.