Skip to content

Commit 46f2239

Browse files
authored
7.1.2 pre release prep (#3030)
1 parent fd21a00 commit 46f2239

File tree

7 files changed

+35
-11
lines changed

7 files changed

+35
-11
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2025-01-10 RELEASE 7.1.2
2+
3+
A minor release that bumped up a few dev dependencies and achieved a few small but notable improvements, particularly with longturtle sorting:
4+
5+
Feature PRs:
6+
7+
* [PR #2963](https://github.com/RDFLib/rdflib/pull/2963) Big typing updates
8+
* [PR #2964](https://github.com/RDFLib/rdflib/pull/2964) Defined Namesapce warnings fix
9+
* [PR #2971](https://github.com/RDFLib/rdflib/pull/2971) convert uses of Optional and some Union usage to union operator |
10+
* [PR #2989](https://github.com/RDFLib/rdflib/pull/2989) Fixed incorrect ASK behaviour for dataset with one element
11+
* [PR #2997](https://github.com/RDFLib/rdflib/pull/2997) sort longturtle blank nodes
12+
* [PR #3008](https://github.com/RDFLib/rdflib/pull/3008) deterministic longturtle serialisation using RDF canonicalization + n-triples sort
13+
* [PR #3012](https://github.com/RDFLib/rdflib/pull/3012) Dataset documentation improvements
14+
15+
Dependency bumps:
16+
17+
* ruff from 0.71 -> 0.8.6
18+
* orjson 3.10.10 ->
19+
* pytest-cov to 6.0.0
20+
* coverage to 7.6.10
21+
* pytest to 8.3.4
22+
* poetry to 2.0.0
23+
124
## 2024-10-17 RELEASE 7.1.1
225

326
This minor release removes the dependency on some only Python packages, in particular

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ authors:
7272
- family-names: "Stuart"
7373
given-names: "Veyndan"
7474
title: "RDFLib"
75-
version: 7.1.1
76-
date-released: 2024-10-28
75+
version: 7.1.2
76+
date-released: 2025-01-10
7777
url: "https://github.com/RDFLib/rdflib"
7878
doi: 10.5281/zenodo.6845245

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ Help with maintenance of all of the RDFLib family of packages is always welcome
4444
## Versions & Releases
4545

4646
* `main` branch in this repository is the unstable release
47-
* `7.1.1` current stable release, bugfixes to 7.1.0
48-
* `7.0.0` previous stable release, supports Python 3.8.1+ only.
49-
* see [Releases](https://github.com/RDFLib/rdflib/releases)
47+
* `7.1.2` current stable release, small improvements on to 7.1.1
48+
* `7.1.1` previous stable release
49+
* see <https://github.com/RDFLib/rdflib/releases/tag/7.1.1>
5050
* `6.x.y` supports Python 3.7+ only. Many improvements over 5.0.0
51-
* see [Releases](https://github.com/RDFLib/rdflib/releases)
51+
* see <https://github.com/RDFLib/rdflib/releases/tag/6.3.2>
5252
* `5.x.y` supports Python 2.7 and 3.4+ and is [mostly backwards compatible with 4.2.2](https://rdflib.readthedocs.io/en/stable/upgrade4to5.html).
53+
* * see <https://github.com/RDFLib/rdflib/releases/tag/5.0.0>
5354

5455
See <https://github.com/RDFLib/rdflib/releases/> for the release details.
5556

@@ -68,7 +69,7 @@ Some features of RDFLib require optional dependencies which may be installed usi
6869
Alternatively manually download the package from the Python Package
6970
Index (PyPI) at https://pypi.python.org/pypi/rdflib
7071

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

7374
### Installation of the current main branch (for developers)
7475

admin/get_merged_prs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import urllib.request
66

77
# https://api.github.com/search/issues?q=repo:rdflib/rdflib+is:pr+merged:%3E=2023-08-02&per_page=300&page=1
8-
LAST_RELEASE_DATE = "2024-10-17"
8+
LAST_RELEASE_DATE = "2024-10-29"
99
ISSUES_URL = "https://api.github.com/search/issues"
1010
ITEMS = []
1111
PAGE = 1

docs/conf.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rdflib"
3-
version = "8.0.0a0"
3+
version = "7.1.2"
44
description = """RDFLib is a Python library for working with RDF, \
55
a simple yet powerful language for representing information."""
66
authors = [{ name = "Daniel 'eikeon' Krech", email = "[email protected]" }]

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

5757
__all__ = [
5858
"URIRef",

0 commit comments

Comments
 (0)