Skip to content

Commit 0c819cf

Browse files
author
Nicholas Car
committed
6.0.2 release docco
1 parent 4a16a5f commit 0c819cf

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2021/09/17 RELEASE 6.0.2
2+
========================
3+
Minor release to add OWL.rational & OWL.real which are needed to allow the OWL-RL pachage to use only rdflib namespaces, not it's own versions.
4+
5+
* Add owl:rational and owl:real to match standard.
6+
[PR #1428](https://github.com/RDFLib/rdflib/pull/1428)
7+
8+
A few other small things have been added, see the following merged PRs list:
9+
10+
* rename arg LOVE to ns in rdfpipe
11+
[PR #1426](https://github.com/RDFLib/rdflib/pull/1426)
12+
* Remove Tox reference to Python 3.6
13+
[PR #1422](https://github.com/RDFLib/rdflib/pull/1422)
14+
* Add Brick DefinedNamespace
15+
[PR #1419](https://github.com/RDFLib/rdflib/pull/1419)
16+
* Use setName on TokenConverter to set the name property
17+
[PR #1409](https://github.com/RDFLib/rdflib/pull/1409)
18+
* Add test for adding JSON-LD to guess_format()
19+
[PR #1408](https://github.com/RDFLib/rdflib/pull/1408)
20+
* Fix mypy type errors and add mypy to .drone.yml
21+
[PR #1407](https://github.com/RDFLib/rdflib/pull/1407)
22+
23+
124
2021/09/17 RELEASE 6.0.1
225
========================
326
Minor release to fix a few small errors, in particular with JSON-LD parsing & serializing integration from rdflib-jsonld. Also, a few other niceties, such as allowing graph `add()`, `remove()` etc. to be chainable.

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Drew Perttula
2020
Edmond Chuc
2121
Elias Torres
2222
Florian Ludwig
23+
Gabe Fierro
2324
Gerhard Weis
2425
Graham Higgins
2526
Graham Klyne

admin/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Tools to assist with RDFlib releases, like extracting all merged PRs from GitHub
1010
3. black everything
1111
* use the config, e.g. `black --config black.toml .` in main dir
1212
4. build docs - check for errors/warnings there
13+
* `python setup.py build_sphinx`
1314
5. alter version & date in rdflib/__init__.py
1415
6. update:
1516
* CHANGELOG.md

rdflib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
__docformat__ = "restructuredtext en"
4646

4747
# The format of the __version__ line is matched by a regex in setup.py
48-
__version__ = "6.0.2a0"
49-
__date__ = "2021-09-17"
48+
__version__ = "6.0.2"
49+
__date__ = "2021-10-10"
5050

5151
__all__ = [
5252
"URIRef",

rdflib/namespace/_BRICK.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from rdflib.term import URIRef
22
from rdflib.namespace import DefinedNamespace, Namespace
33

4+
45
class BRICK(DefinedNamespace):
56
"""
67
Brick Ontology classes, properties and entity properties. See https://brickschema.org/

0 commit comments

Comments
 (0)