Skip to content

Commit

Permalink
v1.2.16 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent-laporte-pro authored Jan 24, 2025
2 parents e2019e3 + 1cda0a5 commit 10c62f5
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 13 deletions.
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.15
current_version = 1.2.16
commit = True
tag = False
message = Prepare next version {new_version} (unreleased)
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ jobs:
fail-fast: false
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
exclude:
- platform: macos-latest
python-version: "3.7"
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]

runs-on: ${{ matrix.platform }}

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


v1.2.16 (2025-11-24)
====================

Bug fix release

Fix
---

- Fix #78: Fix configuration for Packit 1.0.0

- Fix #79: Fix the configuration for the intersphinx mapping in the Sphinx documentation.
See `How to link to other documentation projects with Intersphinx <https://docs.readthedocs.io/en/stable/guides/intersphinx.html>`_.

Other
-----

- Drop support for Python older than 3.7 in GitHub Actions.


v1.2.15 (2024-11-15)
====================

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.15"
__version__ = "1.2.16"
__author__ = u"Laurent LAPORTE <[email protected]>"
__date__ = "2024-11-15"
__date__ = "2025-01-24"
__credits__ = "(c) Laurent LAPORTE"

from deprecated.classic import deprecated
8 changes: 4 additions & 4 deletions 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.15"
release = "1.2.16"
# The short X.Y version.
version = release.rpartition('.')[0]

Expand Down Expand Up @@ -173,9 +173,9 @@

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'https://docs.python.org/3/': None,
'https://wrapt.readthedocs.io/en/latest/': None,
'http://flask.pocoo.org/docs/1.0/': None,
'python': ('https://docs.python.org/3/', None),
'wrapt': ('https://wrapt.readthedocs.io/en/latest/', None),
'flask': ('http://flask.pocoo.org/docs/1.0/', None),
'django': ('https://docs.djangoproject.com/en/2.1/', 'https://docs.djangoproject.com/en/2.1/_objects/'),
}

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.15
Version: 1.2.16
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.15",
version="1.2.16",
url="https://github.com/laurent-laporte-pro/deprecated",
project_urls={
"Documentation": "https://deprecated.readthedocs.io/en/latest/",
Expand Down

0 comments on commit 10c62f5

Please sign in to comment.