Skip to content

Commit

Permalink
6.0.3a
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholascar committed Oct 10, 2021
1 parent d971a5d commit 4a38e2e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
9 changes: 6 additions & 3 deletions admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ Tools to assist with RDFlib releases, like extracting all merged PRs from GitHub
* `python3 setup.py bdist_wheel sdist`
* `twine upload ./dist/*`
9. Make GitHub release
* `git tag <new-version>`
* `git push --tags`
* go to the tagged version, e.g. https://github.com/RDFLib/rdflib/releases/tag/6.0.0
* edit the release' notes there (likely copy from CHANGELOG)
10. Build readthedocs docco
11. Build readthedocs docco
* `latest` and `stable` need to be built at least
* best to make sure the previous (outgoing) release has a number-pegged version, e.g. 5.0.0
11. update the rdflib.dev website page
12. update the master version to this version + 1
12. update the rdflib.dev website page
14. Update the GitHub master version
* e.g. for release 6.0.2, change version to 6.0.3a and push to GitHub
8 changes: 6 additions & 2 deletions rdflib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
__docformat__ = "restructuredtext en"

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

__all__ = [
Expand All @@ -57,9 +57,11 @@
"Dataset",
"Graph",
"ConjunctiveGraph",
"BRICK",
"CSVW",
"DC",
"DCAT",
"DCMITYPE",
"DCTERMS",
"DOAP",
"FOAF",
Expand All @@ -77,8 +79,8 @@
"SOSA",
"SSN",
"TIME",
"VANN",
"VOID",
"XMLNS",
"XSD",
"util",
]
Expand Down Expand Up @@ -161,6 +163,7 @@
from rdflib import query

from rdflib.namespace import (
BRICK,
CSVW,
DC,
DCAT,
Expand All @@ -181,6 +184,7 @@
SOSA,
SSN,
TIME,
VANN,
VOID,
XMLNS,
XSD,
Expand Down
5 changes: 3 additions & 2 deletions rdflib/namespace/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
* BRICK
* CSVW
* DC
* DCMITYPE
* DCAT
* DCMITYPE
* DCTERMS
* DCAM
* DOAP
Expand All @@ -69,9 +69,9 @@
* SOSA
* SSN
* TIME
* VANN
* VOID
* XSD
* VANN
.. code-block:: pycon
>>> from rdflib.namespace import RDFS
Expand Down Expand Up @@ -718,5 +718,6 @@ def get_longest_namespace(trie, value):
from rdflib.namespace._SOSA import SOSA
from rdflib.namespace._SSN import SSN
from rdflib.namespace._TIME import TIME
from rdflib.namespace._VANN import VANN
from rdflib.namespace._VOID import VOID
from rdflib.namespace._XSD import XSD

0 comments on commit 4a38e2e

Please sign in to comment.