14
0
forked from pool/python-rdflib

Accepting request 209979 from home:TheBlackCat:branches:devel:languages:python

Update to 4.0.1

OBS-URL: https://build.opensuse.org/request/show/209979
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rdflib?expand=0&rev=39
This commit is contained in:
Todd R
2013-12-09 13:30:32 +00:00
committed by Git OBS Bridge
parent f7ec5d3e3f
commit e14e7e82d9
4 changed files with 95 additions and 9 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Fri Dec 6 13:57:34 UTC 2013 - toddrme2178@gmail.com
- Update to 4.0.1
* Bugfixes
- Update to 4.0
* The new SPARQL 1.1 engine (rdflib-sparql) has been included in the core distribution. SPARQL 1.1 queries and updates should work out of the box.
* Several RDF 1.1 features are available:
* A new DataSet class
* XMLLiteral and HTMLLiterals
* BNode (de)skolemization is supported through BNode.skolemize, URIRef.de_skolemize, Graph.skolemize and Graph.de_skolemize
* Handled of Literal equality was split into lexical comparison (for normal == operator) and value space (using new Node.eq methods). This introduces some slight backwards incomaptible changes, but was necessary, as the old version had inconsisten hash and equality methods that could lead the literals not working correctly in dicts/sets. The new way is more in line with how SPARQL 1.1 works. For the full details, see:
* Iterating over QueryResults will generate ResultRow objects, these allow access to variable bindings as attributes or as a dict. I.e.
* "Slicing" of Graphs and Resources as syntactic sugar: (#271)
* The SPARQLStore and SPARQLUpdateStore are now included in the RDFLib core
* The documentation has been given a major overhaul, and examples for most features have been added.
- Update to 3.4
* This release introduced new parsers for structured data in HTML. In particular formats: hturtle, rdfa, mdata and an auto-detecting html format were added. Thanks to Ivan Herman for this!
* This release includes a lot of admin maintentance - correct dependencies for different python versions, etc. Several py3 bugs were also fixed.
* This release drops python 2.4 compatability - it was just getting too expensive for us to maintain. It should however be compatible with any cpython from 2.5 through 3.3.
* node.md5_term is now deprecated, if you use it let us know.
- Add additional dependencies
- Implement update-alternatives
-------------------------------------------------------------------
Thu Jan 31 13:27:04 UTC 2013 - saschpe@suse.de