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+
126## 2025-01-17 RELEASE 7.1.3
227
328A 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
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
Original file line number Diff line number Diff line change 55import 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 "
99ISSUES_URL = "https://api.github.com/search/issues"
1010ITEMS = []
1111PAGE = 1
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " rdflib"
3- version = " 7.1.4a "
3+ version = " 7.1.4 "
44description = """ RDFLib is a Python library for working with RDF, \
55a simple yet powerful language for representing information."""
66authors = [
" Daniel 'eikeon' Krech <[email protected] >" ]
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments