Skip to content

Commit 721164c

Browse files
authored
7.1.4 pre-release (#3098)
1 parent d220ee3 commit 721164c

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 2025-03-29 RELEASE 7.1.4
2+
3+
A tidy-up release with no major updates over 7.1.3. This may be the last 7.x
4+
release as we move to a version 8 with breaking changes to Dataset and a few
5+
APIs.
6+
7+
Interesting PRs merged:
8+
9+
* 2025-03-24 - remove old hacks against 2to3
10+
[PR #3095](https://github.com/RDFLib/rdflib/pull/3095)
11+
* 2025-03-24 - Allow multi subjects & objects in graph funcs
12+
[PR #3086](https://github.com/RDFLib/rdflib/pull/3086)
13+
* 2025-03-24 - Reduce test warnings
14+
[PR #3085](https://github.com/RDFLib/rdflib/pull/3085)
15+
* 2025-03-22 - Downgrade log message about plugin
16+
[PR #3063](https://github.com/RDFLib/rdflib/pull/3063)
17+
* 2025-03-22 - remove old hacks against 2to3
18+
[PR #3076](https://github.com/RDFLib/rdflib/pull/3076)
19+
* 2025-03-22 - Cope with Namespace annotations in Python 3.14
20+
[PR #3084](https://github.com/RDFLib/rdflib/pull/3084)
21+
* 2025-01-18 - small docco update
22+
[PR #3053](https://github.com/RDFLib/rdflib/pull/3053)
23+
24+
... and lots of boring dependency bump PRs merged!
25+
126
## 2025-01-17 RELEASE 7.1.3
227

328
A fix-up release that re-adds support for Python 3.8 after it was accidentally

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Help with maintenance of all of the RDFLib family of packages is always welcome
4242

4343
## Versions & Releases
4444

45-
* `main` branch in this repository is the current unstable release
45+
* `main` branch in this repository is the current unstable release - version 8 alpha
46+
* `7.1.4` tidy-up release, possibly last 7.x release
4647
* `7.1.3` current stable release, small improvements to 7.1.1
4748
* `7.1.2` previously deleted release
4849
* `7.1.1` previous stable release

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 = "2025-01-18"
99
ISSUES_URL = "https://api.github.com/search/issues"
1010
ITEMS = []
1111
PAGE = 1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rdflib"
3-
version = "7.1.4a"
3+
version = "7.1.4"
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

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-01-18"
55+
__date__ = "2025-03-29"
5656

5757
__all__ = [
5858
"URIRef",

0 commit comments

Comments
 (0)