Skip to content

Commit 856c1af

Browse files
authored
chore: prep 7.2.1 release (#3225)
* chore: prep 7.2.1 release * docs: add new step in releasing section * build: update poetry lockfile * docs: fix title underline too short
1 parent 19a0ccf commit 856c1af

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## 2025-09-18 RELEASE 7.2.0
1+
## 2025-09-19 RELEASE 7.2.1
2+
3+
A tiny clean up release.
4+
5+
Fixes:
6+
- Previous RDFLib releases required all downstream projects to specify <4.0.0. This release relaxes this requirement to allow Python 3.8.1 and later.
7+
8+
## 2025-09-19 RELEASE 7.2.0
29

310
This release contains a number of fixes and improvements to RDFLib.
411

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ authors:
6969
- family-names: "Stuart"
7070
given-names: "Veyndan"
7171
title: "RDFLib"
72-
version: 7.2.0
73-
date-released: 2025-09-18
72+
version: 7.2.1
73+
date-released: 2025-09-19
7474
url: "https://github.com/RDFLib/rdflib"
7575
doi: 10.5281/zenodo.6845245

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Help with maintenance of all of the RDFLib family of packages is always welcome
4343
## Versions & Releases
4444

4545
* `main` branch in this repository is the current unstable release - version 8 alpha
46+
* `7.2.1` tiny clean up release, relaxes Python version requirement
4647
* `7.2.0` general fixes and usability improvements, see changelog for details
4748
* `7.1.4` tidy-up release, possibly last 7.x release
4849
* `7.1.3` current stable release, small improvements to 7.1.1

docs/developers.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,16 @@ Once this is all done, create another post-release pull request with the followi
551551
#. In ``docker/latest/requirements.in`` set the version to the just released version
552552
#. Use ``task docker:prepare`` to update ``docker/latest/requirements.txt``
553553

554+
5. Port changes to the next major working branch
555+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
554556

557+
If maintaining multiple long-lived version branches, ensure changes from this release are ported to the next major working branch.
555558

556-
5. Let the world know
559+
For instance, releasing a ``7.x`` would require merging in changes to ``main`` for version ``8.x``.
560+
561+
This ensures general fixes and enhancements are ported over and maintained in the next major working branch.
562+
563+
6. Let the world know
557564
~~~~~~~~~~~~~~~~~~~~~
558565

559566
Announce the release at the following locations:

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rdflib"
3-
version = "7.2.0"
3+
version = "7.2.1"
44
description = """RDFLib is a Python library for working with RDF, \
55
a simple yet powerful language for representing information."""
66
authors = ["Daniel 'eikeon' Krech <eikeon@eikeon.com>"]
@@ -38,7 +38,7 @@ rdfs2dot = 'rdflib.tools.rdfs2dot:main'
3838
rdfgraphisomorphism = 'rdflib.tools.graphisomorphism:main'
3939

4040
[tool.poetry.dependencies]
41-
python = "^3.8.1"
41+
python = ">=3.8.1"
4242
isodate = {version=">=0.7.2,<1.0.0", python = "<3.11"}
4343
pyparsing = ">=2.1.0,<4"
4444
berkeleydb = {version = "^18.1.0", optional = true}

rdflib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
__docformat__ = "restructuredtext en"
5353

5454
__version__: str = _DISTRIBUTION_METADATA["Version"]
55-
__date__ = "2025-09-18"
55+
__date__ = "2025-09-19"
5656

5757
__all__ = [
5858
"URIRef",

0 commit comments

Comments
 (0)