File tree Expand file tree Collapse file tree 5 files changed +30
-4
lines changed Expand file tree Collapse file tree 5 files changed +30
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
26
## 2025-01-17 RELEASE 7.1.3
2
27
3
28
A fix-up release that re-adds support for Python 3.8 after it was accidentally
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ Help with maintenance of all of the RDFLib family of packages is always welcome
42
42
43
43
## Versions & Releases
44
44
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
46
47
* ` 7.1.3 ` current stable release, small improvements to 7.1.1
47
48
* ` 7.1.2 ` previously deleted release
48
49
* ` 7.1.1 ` previous stable release
Original file line number Diff line number Diff line change 5
5
import urllib .request
6
6
7
7
# 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 "
9
9
ISSUES_URL = "https://api.github.com/search/issues"
10
10
ITEMS = []
11
11
PAGE = 1
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " rdflib"
3
- version = " 7.1.4a "
3
+ version = " 7.1.4 "
4
4
description = """ RDFLib is a Python library for working with RDF, \
5
5
a simple yet powerful language for representing information."""
6
6
authors = [
" Daniel 'eikeon' Krech <[email protected] >" ]
Original file line number Diff line number Diff line change 52
52
__docformat__ = "restructuredtext en"
53
53
54
54
__version__ : str = _DISTRIBUTION_METADATA ["Version" ]
55
- __date__ = "2025-01-18 "
55
+ __date__ = "2025-03-29 "
56
56
57
57
__all__ = [
58
58
"URIRef" ,
You can’t perform that action at this time.
0 commit comments