antoniogarrote / rdfstore-js

JS RDF store with SPARQL support
MIT License
563 stars 109 forks source link

Fix parser errors by upgrading to latest N3.js. #76

Closed RubenVerborgh closed 9 years ago

RubenVerborgh commented 10 years ago

As noted in https://github.com/RubenVerborgh/N3.js/issues/28, N3.js 0.3.x upgraded its interface from the old version 0.2.x. Unfortunately, rdfstore-js does not use semantic versioning to load the N3.js library, so the latest version is always used, resulting in an interface incompatibility.

This commit fixes the parser by upgrading to the latest version of N3.js. It also uses semantic versioning to prevent this from happening in the future.

antoniogarrote commented 9 years ago

Code has been updated to 0.4.1 see commit #5ab19daa7012fe8

RubenVerborgh commented 9 years ago

Great, thanks!