Skip to content

Commit 4a38e2e

Browse files
author
Nicholas Car
committed
6.0.3a
1 parent d971a5d commit 4a38e2e

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

admin/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ Tools to assist with RDFlib releases, like extracting all merged PRs from GitHub
2525
* `python3 setup.py bdist_wheel sdist`
2626
* `twine upload ./dist/*`
2727
9. Make GitHub release
28+
* `git tag <new-version>`
29+
* `git push --tags`
2830
* go to the tagged version, e.g. https://github.com/RDFLib/rdflib/releases/tag/6.0.0
2931
* edit the release' notes there (likely copy from CHANGELOG)
30-
10. Build readthedocs docco
32+
11. Build readthedocs docco
3133
* `latest` and `stable` need to be built at least
3234
* best to make sure the previous (outgoing) release has a number-pegged version, e.g. 5.0.0
33-
11. update the rdflib.dev website page
34-
12. update the master version to this version + 1
35+
12. update the rdflib.dev website page
36+
14. Update the GitHub master version
37+
* e.g. for release 6.0.2, change version to 6.0.3a and push to GitHub

rdflib/__init__.py

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

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

5151
__all__ = [
@@ -57,9 +57,11 @@
5757
"Dataset",
5858
"Graph",
5959
"ConjunctiveGraph",
60+
"BRICK",
6061
"CSVW",
6162
"DC",
6263
"DCAT",
64+
"DCMITYPE",
6365
"DCTERMS",
6466
"DOAP",
6567
"FOAF",
@@ -77,8 +79,8 @@
7779
"SOSA",
7880
"SSN",
7981
"TIME",
82+
"VANN",
8083
"VOID",
81-
"XMLNS",
8284
"XSD",
8385
"util",
8486
]
@@ -161,6 +163,7 @@
161163
from rdflib import query
162164

163165
from rdflib.namespace import (
166+
BRICK,
164167
CSVW,
165168
DC,
166169
DCAT,
@@ -181,6 +184,7 @@
181184
SOSA,
182185
SSN,
183186
TIME,
187+
VANN,
184188
VOID,
185189
XMLNS,
186190
XSD,

rdflib/namespace/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
* BRICK
5050
* CSVW
5151
* DC
52-
* DCMITYPE
5352
* DCAT
53+
* DCMITYPE
5454
* DCTERMS
5555
* DCAM
5656
* DOAP
@@ -69,9 +69,9 @@
6969
* SOSA
7070
* SSN
7171
* TIME
72+
* VANN
7273
* VOID
7374
* XSD
74-
* VANN
7575
7676
.. code-block:: pycon
7777
>>> from rdflib.namespace import RDFS
@@ -718,5 +718,6 @@ def get_longest_namespace(trie, value):
718718
from rdflib.namespace._SOSA import SOSA
719719
from rdflib.namespace._SSN import SSN
720720
from rdflib.namespace._TIME import TIME
721+
from rdflib.namespace._VANN import VANN
721722
from rdflib.namespace._VOID import VOID
722723
from rdflib.namespace._XSD import XSD

0 commit comments

Comments
 (0)