diff --git a/CHANGELOG.md b/CHANGELOG.md index b3fc551e..1f60c434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [0.2.5] - 2021-07-11 + +## Added +- [SPARQL 1.1 Query Results JSON Format](http://www.w3.org/TR/sparql11-results-json/) parser. +- Python wheels for macOS are now universal2 binaries. + +### Changed +- The `Cargo.lock` file is now provided with releases to avoid compilation failures because of changes in dependencies. +- Uses clap instead of argh for the server arguments parsing. +- Upgrades PyO3 to v0.14. + + ## [0.2.4] - 2021-04-28 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 9ccd80d4..3d3a0872 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aead" version = "0.3.2" @@ -1548,7 +1550,7 @@ dependencies = [ [[package]] name = "oxigraph" -version = "0.2.4" +version = "0.2.5" dependencies = [ "criterion", "digest", @@ -1583,7 +1585,7 @@ dependencies = [ [[package]] name = "oxigraph_js" -version = "0.2.4" +version = "0.2.5" dependencies = [ "console_error_panic_hook", "js-sys", @@ -1594,7 +1596,7 @@ dependencies = [ [[package]] name = "oxigraph_server" -version = "0.2.4" +version = "0.2.5" dependencies = [ "argh", "async-h1", @@ -1610,7 +1612,7 @@ dependencies = [ [[package]] name = "oxigraph_testsuite" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "chrono", @@ -1621,7 +1623,7 @@ dependencies = [ [[package]] name = "oxigraph_wikibase" -version = "0.2.4" +version = "0.2.5" dependencies = [ "async-h1", "async-std", @@ -1902,7 +1904,7 @@ dependencies = [ [[package]] name = "pyoxigraph" -version = "0.2.4" +version = "0.2.5" dependencies = [ "native-tls", "oxigraph", diff --git a/js/Cargo.toml b/js/Cargo.toml index 1d964191..de192274 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 48809c72..e174425f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index c2377d87..aea12cfc 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/server/Cargo.toml b/server/Cargo.toml index 6b6d0130..9dcd8b04 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 706f95ea..43b500f2 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "../README.md" diff --git a/wikibase/Cargo.toml b/wikibase/Cargo.toml index 8d2d447f..7e034955 100644 --- a/wikibase/Cargo.toml +++ b/wikibase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_wikibase" -version = "0.2.4" +version = "0.2.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md"