Skip to content

Commit 4b0f580

Browse files
committed
7.1.3-pre-release
1 parent 76a870c commit 4b0f580

File tree

7 files changed

+39
-10
lines changed

7 files changed

+39
-10
lines changed

CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 2025-01-17 RELEASE 7.1.3
2+
3+
A fix-up release that re-adds support for Python 3.8 after it was accidentally
4+
removed in Release 7.1.2.
5+
6+
This release cherrypicks many additions to 7.1.2 added to 7.1.1 but leaves out
7+
typing changes that are not compatable
8+
with Python 3.8.
9+
10+
Also not carried over from 7.1.2 is the change from Poetry 1.x to 2.0.
11+
12+
Included are PRs such as _Defined Namespace warnings fix_, _sort longturtle
13+
blank nodes_, _deterministic longturtle serialisation_ and _Dataset documentation
14+
improvements_.
15+
16+
For the full list of included PRs, see the preparatory PR:
17+
<https://github.com/RDFLib/rdflib/pull/3036>.
18+
19+
## 2025-01-10 RELEASE 7.1.2
20+
21+
A minor release that inadvertently removed support for Python 3.8. This release
22+
how now been deleted.
23+
24+
All the improved features initially made available in this release that were
25+
compatible with Python 3.8 have been preserved in the 7.1.3 release. The main
26+
additions to 7.1.2 not preserved in 7.1.3 are updated type hints.
27+
128
## 2024-10-17 RELEASE 7.1.1
229

330
This minor release removes the dependency on some only Python packages, in particular
@@ -31,7 +58,6 @@ Merged PRs:
3158
* 2024-10-23 - build(deps-dev): bump ruff from 0.6.9 to 0.7.0
3259
[PR #2942](https://github.com/RDFLib/rdflib/pull/2942)
3360

34-
3561
## 2024-10-17 RELEASE 7.1.0
3662

3763
This minor release incorporates just over 100 substantive PRs - interesting

CITATION.cff

+2-2
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.1.1
73-
date-released: 2024-10-28
72+
version: 7.1.3
73+
date-released: 2024-01-18
7474
url: "https://github.com/RDFLib/rdflib"
7575
doi: 10.5281/zenodo.6845245

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2002-2024, RDFLib Team
3+
Copyright (c) 2002-2025, RDFLib Team
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,11 @@ Help with maintenance of all of the RDFLib family of packages is always welcome
4343

4444
## Versions & Releases
4545

46-
* `main` branch in this repository is the unstable release
47-
* `7.1.1` current stable release, bugfixes to 7.1.0
46+
* `main` branch in this repository is the current unstable release
47+
* `7.1.3` current stable release, small improvements to 7.1.1
48+
* `7.1.2` previously deleted release
49+
* `7.1.1` previous stable release
50+
* see <https://github.com/RDFLib/rdflib/releases/tag/7.1.1>
4851
* `7.0.0` previous stable release, supports Python 3.8.1+ only.
4952
* see [Releases](https://github.com/RDFLib/rdflib/releases)
5053
* `6.x.y` supports Python 3.7+ only. Many improvements over 5.0.0
@@ -68,7 +71,7 @@ Some features of RDFLib require optional dependencies which may be installed usi
6871
Alternatively manually download the package from the Python Package
6972
Index (PyPI) at https://pypi.python.org/pypi/rdflib
7073

71-
The current version of RDFLib is 7.1.1, see the ``CHANGELOG.md`` file for what's new in this release.
74+
The current version of RDFLib is 7.1.3, see the ``CHANGELOG.md`` file for what's new in this release.
7275

7376
### Installation of the current main branch (for developers)
7477

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181

8282
# General information about the project.
8383
project = "rdflib"
84-
copyright = "2009 - 2024, RDFLib Team"
84+
copyright = "2002 - 2025, RDFLib Team"
8585

8686
# The version info for the project you're documenting, acts as replacement for
8787
# |version| and |release|, also used in various other places throughout the

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rdflib"
3-
version = "7.1.3a0"
3+
version = "7.1.3"
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 <[email protected]>"]

rdflib/__init__.py

+1-1
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__ = "2024-10-28"
55+
__date__ = "2025-01-18"
5656

5757
__all__ = [
5858
"URIRef",

0 commit comments

Comments
 (0)