Skip to content

Commit 9ac5b51

Browse files
committed
Prepare for 2.0.0 release
1 parent a50015e commit 9ac5b51

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

Diff for: AUTHORS.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
# Authors
22

3-
* Ivan Herman ([@iherman](http://github.com/iherman))
3+
* Ivan Herman ([@iherman](http://github.com/iherman))
44
* Sergio Fernández ([@wikier](http://github.com/wikier))
55
* Carlos Tejo ([@dayures](http://github.com/dayures))
66
* Alexey Zakhlestin ([@indeyets](http://github.com/indeyets))
77

88
# Contributors
99

10+
See https://github.com/RDFLib/sparqlwrapper/graphs/contributors
11+
12+
* [@eggplants]https://github.com/eggplants: most things to make 2.0.0 happen
1013
* Obey Arthur Liu ([@ArthurLiu](http://github.com/ArthurLiu)): different patches
1114
* Christopher Lenz ([@cmlenz](http://github.com/cmlenz)): feature to allow developers to choose the json module
1215
* Pēteris Caune ([@cuu508](http://github.com/cuu508)): great feedback and patches
1316
* Bogdan Benea ([[email protected]](mailto:[email protected])), patch for the query regular expresion
14-
* William Waites ([@wwaites](http://github.com/wwaites)): patches for RDFLib3
17+
* William Waites ([@wwaites](http://github.com/wwaites)): patches for RDFLib3
1518
* Christoph Burgmer ([@cburgmer](http://github.com/cburgmer)): patches for RDFLib3
1619
* Thomas Kluyver ([@takluyver](http://github.com/takluyver)): patches for Python 3.x
1720
* Diego Berrueta ([@berrueta](http://github.com/berrueta)): new function for printing results as table
@@ -20,7 +23,7 @@
2023
* Urs Holzer ([@uholzer](http://github.com/uholzer)): features, patches and testing
2124
* Alf Lervåg ([@alf](http://github.com/alf)): setup patch
2225
* Nolan Nichols ([@nicholsn](http://github.com/nicholsn)): http disgest auth support
23-
* Kevin Turner ([@keturn](https://github.com/keturn)): `SmartWrapper.Value.__repr__()` implementation
26+
* Kevin Turner ([@keturn](https://github.com/keturn)): `SmartWrapper.Value.__repr__()` implementation
2427
* Marcelo Jorge Vieira ([@marcelometal](https://github.com/marcelometal)): typos
2528
* Trevor Andersen ([@trevorandersen](https://github.com/trevorandersen): patches for Python 3.x
2629
* Carlos Martinez-Ortiz ([@cmartinez](https://github.com/cmartinez): improves support for return format HTTP parameter

Diff for: ChangeLog.txt

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
SPARQLWrapper's changelog
22
=========================
33

4-
2020-XX-XX 1.9.0
4+
2022-03-14 2.0.0
55
-----------------
6-
- Port codebase to Python 3. Drop support for Python 2
7-
- XXX
6+
- Ported codebase to Python 3. Dropped support for Python 2
7+
- Removed nosetest in favour of unittest
8+
- Added a CLI: ``rqw``
9+
- Updated for RDFLib >= 6.1.1
10+
- Added type hints
11+
12+
Special thanks to `@eggplants <https://github.com/eggplants>`_ for making this release happen.
13+
814

915
2019-12-22 1.8.5
1016
-----------------

Diff for: SPARQLWrapper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
"""
1111

12-
__version__ = "1.9.0.dev0"
12+
__version__ = "2.0.0"
1313
"""The version of SPARQLWrapper"""
1414

1515
__agent__: str = f"sparqlwrapper {__version__} (rdflib.github.io/sparqlwrapper)"

Diff for: setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers =
1919
Programming Language :: Python :: 3.7
2020
Programming Language :: Python :: 3.8
2121
Programming Language :: Python :: 3.9
22+
Programming Language :: Python :: 3.10
2223
Programming Language :: Python :: Implementation :: CPython
2324
Topic :: Software Development :: Libraries :: Python Modules
2425
keywords =

0 commit comments

Comments
 (0)