Releases v0.2.5

pull/114/head v0.2.5
Tpt 3 years ago
parent 54eadcf7ad
commit a21dcbb4f7
  1. 12
      CHANGELOG.md
  2. 14
      Cargo.lock
  3. 2
      js/Cargo.toml
  4. 2
      lib/Cargo.toml
  5. 2
      python/Cargo.toml
  6. 2
      server/Cargo.toml
  7. 2
      testsuite/Cargo.toml
  8. 2
      wikibase/Cargo.toml

@ -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 ## [0.2.4] - 2021-04-28
### Changed ### Changed

14
Cargo.lock generated

@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3
[[package]] [[package]]
name = "aead" name = "aead"
version = "0.3.2" version = "0.3.2"
@ -1548,7 +1550,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph" name = "oxigraph"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"criterion", "criterion",
"digest", "digest",
@ -1583,7 +1585,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_js" name = "oxigraph_js"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"js-sys", "js-sys",
@ -1594,7 +1596,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_server" name = "oxigraph_server"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"argh", "argh",
"async-h1", "async-h1",
@ -1610,7 +1612,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_testsuite" name = "oxigraph_testsuite"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",
@ -1621,7 +1623,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_wikibase" name = "oxigraph_wikibase"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"async-h1", "async-h1",
"async-std", "async-std",
@ -1902,7 +1904,7 @@ dependencies = [
[[package]] [[package]]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"native-tls", "native-tls",
"oxigraph", "oxigraph",

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_js" name = "oxigraph_js"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph" name = "oxigraph"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt"] authors = ["Tpt"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_server" name = "oxigraph_server"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_testsuite" name = "oxigraph_testsuite"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "../README.md" readme = "../README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_wikibase" name = "oxigraph_wikibase"
version = "0.2.4" version = "0.2.5"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

Loading…
Cancel
Save