From 79a9cf6fc25ed9a23959b1bab648ef6fac77751d Mon Sep 17 00:00:00 2001 From: Carlos Tejo Date: Wed, 17 Apr 2019 18:53:44 +0000 Subject: [PATCH] Prepare for 1.8.3 release --- ChangeLog.txt | 4 ++-- SPARQLWrapper/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 8060bba..ca9d1d0 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,6 @@ SPARQLWrapper's changelog: ------------------------- -2018-XX-XX 1.8.3 - Include ChangeLog.txt in the distribution +2019-04-17 1.8.3 - Include ChangeLog.txt in the distribution - Removed import of SPARQLWrapper in setup.py (fixed #113 and closed #115) - Added support for querying RDF/XML in a CONSTRUCT query type - Updated the procedure for determining the query type (#120) @@ -10,7 +10,7 @@ SPARQLWrapper's changelog: - Added/Updated tests - Added examples - Updated doc - + - Fixed code generated for python3 using 2to3, adding a custom fixer (#109) 2018-05-26 1.8.2 - Fixed bug (#100) - Updated doc diff --git a/SPARQLWrapper/__init__.py b/SPARQLWrapper/__init__.py index 58df45d..40071d2 100644 --- a/SPARQLWrapper/__init__.py +++ b/SPARQLWrapper/__init__.py @@ -162,7 +162,7 @@ @requires: U{RDFLib} package. """ -__version__ = "1.8.3.dev0" +__version__ = "1.8.3" """The version of SPARQLWrapper""" __authors__ = "Ivan Herman, Sergio Fernández, Carlos Tejo Alonso, Alexey Zakhlestin" @@ -177,7 +177,7 @@ __contact__ = "rdflib-dev@googlegroups.com" """Mail list to contact to other people RDFLib and SPARQLWrappers folks and developers""" -__date__ = "2018-05-16" +__date__ = "2019-04-17" """Last update""" __agent__ = "sparqlwrapper %s (rdflib.github.io/sparqlwrapper)" % __version__