Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.18 #84

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.17
current_version = 1.2.18
commit = True
tag = False
message = Prepare next version {new_version} (unreleased)
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
- I decided to keep the same version number because there is really no change in the source code
(only in comment or documentation).

v1.2.18 (2024-01-25)
====================

This version does not bring any change in the source code, but fixes the build anomaly on Fedora (Packit).

The package must be published on PyPi using `twine <https://pypi.org/project/twine/>`_ to correctly deal with the license file.


v1.2.17 (2024-01-25)
====================
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.17"
__version__ = "1.2.18"
__author__ = u"Laurent LAPORTE <laurent.laporte.pro@gmail.com>"
__date__ = "2025-01-24"
__date__ = "2025-01-27"
__credits__ = "(c) Laurent LAPORTE"

from deprecated.classic import deprecated
2 changes: 1 addition & 1 deletion docs/source/_static/rusty-tools-background.svg
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.17"
release = "1.2.18"
# 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.17
Version: 1.2.18
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 @@ -144,7 +144,7 @@ def function_three():

setup(
name="Deprecated",
version="1.2.17",
version="1.2.18",
url="https://github.com/laurent-laporte-pro/deprecated",
project_urls={
"Documentation": "https://deprecated.readthedocs.io/en/latest/",
Expand Down
Loading