diff --git a/CHANGELOG.md b/CHANGELOG.md index fb5d27db..1dd6abaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.3.5] - 2022-08-02 + +### Changed +- Fixes a bug in the SPARQL parser with nested anonymous blank nodes (`[]`). +- Migrates the Python documentation skin to [Furo](https://pradyunsg.me/furo/). + + ## [0.3.4] - 2022-07-17 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 3ffec196..876a37ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -525,9 +525,9 @@ dependencies = [ [[package]] name = "indoc" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05a0bd019339e5d968b37855180087b7b9d512c5046fbd244cf8c95687927d6e" +checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3" [[package]] name = "itertools" @@ -772,7 +772,7 @@ dependencies = [ [[package]] name = "oxigraph" -version = "0.3.4" +version = "0.3.5" dependencies = [ "criterion", "digest", @@ -805,7 +805,7 @@ dependencies = [ [[package]] name = "oxigraph_js" -version = "0.3.4" +version = "0.3.5" dependencies = [ "console_error_panic_hook", "js-sys", @@ -816,7 +816,7 @@ dependencies = [ [[package]] name = "oxigraph_server" -version = "0.3.4" +version = "0.3.5" dependencies = [ "clap 3.2.16", "flate2", @@ -831,7 +831,7 @@ dependencies = [ [[package]] name = "oxigraph_testsuite" -version = "0.3.4" +version = "0.3.5" dependencies = [ "anyhow", "clap 3.2.16", @@ -1062,7 +1062,7 @@ dependencies = [ [[package]] name = "pyoxigraph" -version = "0.3.4" +version = "0.3.5" dependencies = [ "oxigraph", "pyo3", @@ -1414,7 +1414,7 @@ dependencies = [ [[package]] name = "spargebra" -version = "0.2.1" +version = "0.2.2" dependencies = [ "oxilangtag", "oxiri", @@ -1583,9 +1583,9 @@ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" [[package]] name = "unindent" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52fee519a3e570f7df377a06a1a7775cdbfb7aa460be7e08de2b1f0e69973a44" +checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112" [[package]] name = "untrusted" diff --git a/js/Cargo.toml b/js/Cargo.toml index 8f5b751a..6a420a18 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.3.4" +version = "0.3.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -14,7 +14,7 @@ crate-type = ["cdylib"] name = "oxigraph" [dependencies] -oxigraph = { version = "0.3.4", path="../lib" } +oxigraph = { version = "0.3.5", path="../lib" } wasm-bindgen = "0.2" js-sys = "0.3" console_error_panic_hook = "0.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 3a38da82..d209caa1 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.3.4" +version = "0.3.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -38,7 +38,7 @@ siphasher = "0.3" lazy_static = "1" sysinfo = "0.25" oxrdf = { version = "0.1.0", path="oxrdf", features = ["rdf-star"] } -spargebra = { version = "0.2.1", path="spargebra", features = ["rdf-star"] } +spargebra = { version = "0.2.2", path="spargebra", features = ["rdf-star"] } sparesults = { version = "0.1.1", path="sparesults", features = ["rdf-star"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/lib/spargebra/Cargo.toml b/lib/spargebra/Cargo.toml index ac9048fc..2ae069c7 100644 --- a/lib/spargebra/Cargo.toml +++ b/lib/spargebra/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spargebra" -version = "0.2.1" +version = "0.2.2" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index e7d3575e..57a96a6b 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.3.4" +version = "0.3.5" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -16,5 +16,5 @@ name = "pyoxigraph" doctest = false [dependencies] -oxigraph = { version = "0.3.4", path="../lib", features = ["http_client"] } +oxigraph = { version = "0.3.5", path="../lib", features = ["http_client"] } pyo3 = { version = "0.16", features = ["extension-module", "abi3-py37"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 0c040c81..aa21d00f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.3.4" +version = "0.3.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -14,7 +14,7 @@ edition = "2021" [dependencies] oxhttp = { version = "0.1", features = ["rayon"] } clap = { version = "3", features = ["derive"] } -oxigraph = { version = "0.3.4", path = "../lib", features = ["http_client"] } +oxigraph = { version = "0.3.5", path = "../lib", features = ["http_client"] } sparesults = { version = "0.1.1", path = "../lib/sparesults", features = ["rdf-star"] } rand = "0.8" url = "2" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 64edd39e..ff34f295 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.3.4" +version = "0.3.5" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -15,7 +15,7 @@ publish = false anyhow = "1" clap = { version = "3", features = ["derive"] } time = { version = "0.3", features = ["formatting"] } -oxigraph = { version = "0.3.4", path="../lib" } +oxigraph = { version = "0.3.5", path="../lib" } text-diff = "0.4" [dev-dependencies]